From 3864a0510fad489a75115806248114cf83f5d6d5 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Tue, 27 Jun 2023 22:55:41 +0200 Subject: [PATCH 01/13] rename binary to arithmetic --- posthog/hogql/ast.py | 6 +-- posthog/hogql/parser.py | 16 +++--- posthog/hogql/printer.py | 14 ++--- posthog/hogql/test/test_parser.py | 86 +++++++++++++++++------------- posthog/hogql/test/test_visitor.py | 12 ++--- posthog/hogql/visitor.py | 6 +-- 6 files changed, 77 insertions(+), 63 deletions(-) diff --git a/posthog/hogql/ast.py b/posthog/hogql/ast.py index 04871ac03feef..57354f0a71bb2 100644 --- a/posthog/hogql/ast.py +++ b/posthog/hogql/ast.py @@ -300,7 +300,7 @@ class Alias(Expr): expr: Expr -class BinaryOperationOp(str, Enum): +class ArithmeticOperationOp(str, Enum): Add = "+" Sub = "-" Mult = "*" @@ -308,10 +308,10 @@ class BinaryOperationOp(str, Enum): Mod = "%" -class BinaryOperation(Expr): +class ArithmeticOperation(Expr): left: Expr right: Expr - op: BinaryOperationOp + op: ArithmeticOperationOp class And(Expr): diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index 809bc235ef094..b24123ce79e92 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -395,8 +395,8 @@ def visitColumnExprExtract(self, ctx: HogQLParser.ColumnExprExtractContext): raise NotImplementedException(f"Unsupported node: ColumnExprExtract") def visitColumnExprNegate(self, ctx: HogQLParser.ColumnExprNegateContext): - return ast.BinaryOperation( - op=ast.BinaryOperationOp.Sub, left=ast.Constant(value=0), right=self.visit(ctx.columnExpr()) + return ast.ArithmeticOperation( + op=ast.ArithmeticOperationOp.Sub, left=ast.Constant(value=0), right=self.visit(ctx.columnExpr()) ) def visitColumnExprSubquery(self, ctx: HogQLParser.ColumnExprSubqueryContext): @@ -416,25 +416,25 @@ def visitColumnExprCast(self, ctx: HogQLParser.ColumnExprCastContext): def visitColumnExprPrecedence1(self, ctx: HogQLParser.ColumnExprPrecedence1Context): if ctx.SLASH(): - op = ast.BinaryOperationOp.Div + op = ast.ArithmeticOperationOp.Div elif ctx.ASTERISK(): - op = ast.BinaryOperationOp.Mult + op = ast.ArithmeticOperationOp.Mult elif ctx.PERCENT(): - op = ast.BinaryOperationOp.Mod + op = ast.ArithmeticOperationOp.Mod else: raise NotImplementedException(f"Unsupported ColumnExprPrecedence1: {ctx.operator.text}") left = self.visit(ctx.left) right = self.visit(ctx.right) - return ast.BinaryOperation(left=left, right=right, op=op) + return ast.ArithmeticOperation(left=left, right=right, op=op) def visitColumnExprPrecedence2(self, ctx: HogQLParser.ColumnExprPrecedence2Context): left = self.visit(ctx.left) right = self.visit(ctx.right) if ctx.PLUS(): - return ast.BinaryOperation(left=left, right=right, op=ast.BinaryOperationOp.Add) + return ast.ArithmeticOperation(left=left, right=right, op=ast.ArithmeticOperationOp.Add) elif ctx.DASH(): - return ast.BinaryOperation(left=left, right=right, op=ast.BinaryOperationOp.Sub) + return ast.ArithmeticOperation(left=left, right=right, op=ast.ArithmeticOperationOp.Sub) elif ctx.CONCAT(): args = [] if isinstance(left, ast.Call) and left.name == "concat": diff --git a/posthog/hogql/printer.py b/posthog/hogql/printer.py index 90fa479e66ee0..c1504f1a6748f 100644 --- a/posthog/hogql/printer.py +++ b/posthog/hogql/printer.py @@ -296,19 +296,19 @@ def visit_join_expr(self, node: ast.JoinExpr) -> JoinExprResponse: def visit_join_constraint(self, node: ast.JoinConstraint): return self.visit(node.expr) - def visit_binary_operation(self, node: ast.BinaryOperation): - if node.op == ast.BinaryOperationOp.Add: + def visit_arithmetic_operation(self, node: ast.ArithmeticOperation): + if node.op == ast.ArithmeticOperationOp.Add: return f"plus({self.visit(node.left)}, {self.visit(node.right)})" - elif node.op == ast.BinaryOperationOp.Sub: + elif node.op == ast.ArithmeticOperationOp.Sub: return f"minus({self.visit(node.left)}, {self.visit(node.right)})" - elif node.op == ast.BinaryOperationOp.Mult: + elif node.op == ast.ArithmeticOperationOp.Mult: return f"multiply({self.visit(node.left)}, {self.visit(node.right)})" - elif node.op == ast.BinaryOperationOp.Div: + elif node.op == ast.ArithmeticOperationOp.Div: return f"divide({self.visit(node.left)}, {self.visit(node.right)})" - elif node.op == ast.BinaryOperationOp.Mod: + elif node.op == ast.ArithmeticOperationOp.Mod: return f"modulo({self.visit(node.left)}, {self.visit(node.right)})" else: - raise HogQLException(f"Unknown BinaryOperationOp {node.op}") + raise HogQLException(f"Unknown ArithmeticOperationOp {node.op}") def visit_and(self, node: ast.And): return f"and({', '.join([self.visit(expr) for expr in node.exprs])})" diff --git a/posthog/hogql/test/test_parser.py b/posthog/hogql/test/test_parser.py index 738d46c080da8..792648497bc84 100644 --- a/posthog/hogql/test/test_parser.py +++ b/posthog/hogql/test/test_parser.py @@ -102,8 +102,8 @@ def test_lambdas(self): args=[ ast.Lambda( args=["x"], - expr=ast.BinaryOperation( - op=ast.BinaryOperationOp.Mult, left=ast.Field(chain=["x"]), right=ast.Constant(value=2) + expr=ast.ArithmeticOperation( + op=ast.ArithmeticOperationOp.Mult, left=ast.Field(chain=["x"]), right=ast.Constant(value=2) ), ) ], @@ -116,8 +116,8 @@ def test_lambdas(self): args=[ ast.Lambda( args=["x"], - expr=ast.BinaryOperation( - op=ast.BinaryOperationOp.Mult, left=ast.Field(chain=["x"]), right=ast.Constant(value=2) + expr=ast.ArithmeticOperation( + op=ast.ArithmeticOperationOp.Mult, left=ast.Field(chain=["x"]), right=ast.Constant(value=2) ), ) ], @@ -130,8 +130,8 @@ def test_lambdas(self): args=[ ast.Lambda( args=["x", "y"], - expr=ast.BinaryOperation( - op=ast.BinaryOperationOp.Mult, left=ast.Field(chain=["x"]), right=ast.Field(chain=["y"]) + expr=ast.ArithmeticOperation( + op=ast.ArithmeticOperationOp.Mult, left=ast.Field(chain=["x"]), right=ast.Field(chain=["y"]) ), ) ], @@ -146,69 +146,81 @@ def test_strings(self): self.assertEqual(self._expr("'n\\null'"), ast.Constant(value="n\null")) # slash and 'n' passed into string self.assertEqual(self._expr("'n\\\\ull'"), ast.Constant(value="n\\ull")) # slash and 'n' passed into string - def test_binary_operations(self): + def test_arithmetic_operations(self): self.assertEqual( self._expr("1 + 2"), - ast.BinaryOperation(left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.BinaryOperationOp.Add), + ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.ArithmeticOperationOp.Add + ), ) self.assertEqual( self._expr("1 + -2"), - ast.BinaryOperation(left=ast.Constant(value=1), right=ast.Constant(value=-2), op=ast.BinaryOperationOp.Add), + ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=-2), op=ast.ArithmeticOperationOp.Add + ), ) self.assertEqual( self._expr("1 - 2"), - ast.BinaryOperation(left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.BinaryOperationOp.Sub), + ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.ArithmeticOperationOp.Sub + ), ) self.assertEqual( self._expr("1 * 2"), - ast.BinaryOperation(left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.BinaryOperationOp.Mult), + ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.ArithmeticOperationOp.Mult + ), ) self.assertEqual( self._expr("1 / 2"), - ast.BinaryOperation(left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.BinaryOperationOp.Div), + ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.ArithmeticOperationOp.Div + ), ) self.assertEqual( self._expr("1 % 2"), - ast.BinaryOperation(left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.BinaryOperationOp.Mod), + ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.ArithmeticOperationOp.Mod + ), ) self.assertEqual( self._expr("1 + 2 + 2"), - ast.BinaryOperation( - left=ast.BinaryOperation( - left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.BinaryOperationOp.Add + ast.ArithmeticOperation( + left=ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.ArithmeticOperationOp.Add ), right=ast.Constant(value=2), - op=ast.BinaryOperationOp.Add, + op=ast.ArithmeticOperationOp.Add, ), ) self.assertEqual( self._expr("1 * 1 * 2"), - ast.BinaryOperation( - left=ast.BinaryOperation( - left=ast.Constant(value=1), right=ast.Constant(value=1), op=ast.BinaryOperationOp.Mult + ast.ArithmeticOperation( + left=ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=1), op=ast.ArithmeticOperationOp.Mult ), right=ast.Constant(value=2), - op=ast.BinaryOperationOp.Mult, + op=ast.ArithmeticOperationOp.Mult, ), ) self.assertEqual( self._expr("1 + 1 * 2"), - ast.BinaryOperation( + ast.ArithmeticOperation( left=ast.Constant(value=1), - right=ast.BinaryOperation( - left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.BinaryOperationOp.Mult + right=ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.ArithmeticOperationOp.Mult ), - op=ast.BinaryOperationOp.Add, + op=ast.ArithmeticOperationOp.Add, ), ) self.assertEqual( self._expr("1 * 1 + 2"), - ast.BinaryOperation( - left=ast.BinaryOperation( - left=ast.Constant(value=1), right=ast.Constant(value=1), op=ast.BinaryOperationOp.Mult + ast.ArithmeticOperation( + left=ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=1), op=ast.ArithmeticOperationOp.Mult ), right=ast.Constant(value=2), - op=ast.BinaryOperationOp.Add, + op=ast.ArithmeticOperationOp.Add, ), ) @@ -340,16 +352,18 @@ def test_parens(self): ) self.assertEqual( self._expr("(1 + 1)"), - ast.BinaryOperation(left=ast.Constant(value=1), right=ast.Constant(value=1), op=ast.BinaryOperationOp.Add), + ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=1), op=ast.ArithmeticOperationOp.Add + ), ) self.assertEqual( self._expr("1 + (1 + 1)"), - ast.BinaryOperation( + ast.ArithmeticOperation( left=ast.Constant(value=1), - right=ast.BinaryOperation( - left=ast.Constant(value=1), right=ast.Constant(value=1), op=ast.BinaryOperationOp.Add + right=ast.ArithmeticOperation( + left=ast.Constant(value=1), right=ast.Constant(value=1), op=ast.ArithmeticOperationOp.Add ), - op=ast.BinaryOperationOp.Add, + op=ast.ArithmeticOperationOp.Add, ), ) @@ -458,8 +472,8 @@ def test_intervals(self): ) self.assertEqual( self._expr("now() - interval 1 week"), - ast.BinaryOperation( - op=ast.BinaryOperationOp.Sub, + ast.ArithmeticOperation( + op=ast.ArithmeticOperationOp.Sub, left=ast.Call(name="now", args=[]), right=ast.Call(name="toIntervalWeek", args=[ast.Constant(value=1)]), ), diff --git a/posthog/hogql/test/test_visitor.py b/posthog/hogql/test/test_visitor.py index 8b9ef3164946b..3d6bfdf91196e 100644 --- a/posthog/hogql/test/test_visitor.py +++ b/posthog/hogql/test/test_visitor.py @@ -22,9 +22,9 @@ def visit_field(self, node): self.fields.append(node.chain) return super().visit_field(node) - def visit_binary_operation(self, node: ast.BinaryOperation): + def visit_arithmetic_operation(self, node: ast.ArithmeticOperation): self.operations.append(node.op) - return super().visit_binary_operation(node) + return super().visit_arithmetic_operation(node) visitor = ConstantVisitor() visitor.visit(ast.Constant(value="asd")) @@ -44,8 +44,8 @@ def test_everything_visitor(self): left=ast.Field(chain=["a"]), right=ast.Constant(value=1), ), - ast.BinaryOperation( - op=ast.BinaryOperationOp.Add, + ast.ArithmeticOperation( + op=ast.ArithmeticOperationOp.Add, left=ast.Field(chain=["b"]), right=ast.Constant(value=2), ), @@ -109,14 +109,14 @@ class UnknownVisitor(Visitor): def visit_unknown(self, node): return "!!" - def visit_binary_operation(self, node: ast.BinaryOperation): + def visit_arithmetic_operation(self, node: ast.ArithmeticOperation): return self.visit(node.left) + node.op + self.visit(node.right) self.assertEqual(UnknownVisitor().visit(parse_expr("1 + 3 / 'asd2'")), "!!+!!/!!") def test_unknown_error_visitor(self): class UnknownNotDefinedVisitor(Visitor): - def visit_binary_operation(self, node: ast.BinaryOperation): + def visit_arithmetic_operation(self, node: ast.ArithmeticOperation): return self.visit(node.left) + node.op + self.visit(node.right) with self.assertRaises(HogQLException) as e: diff --git a/posthog/hogql/visitor.py b/posthog/hogql/visitor.py index 1cd9e6a6965b4..57ea3cb9dc32a 100644 --- a/posthog/hogql/visitor.py +++ b/posthog/hogql/visitor.py @@ -40,7 +40,7 @@ def visit_cte(self, node: ast.CTE): def visit_alias(self, node: ast.Alias): self.visit(node.expr) - def visit_binary_operation(self, node: ast.BinaryOperation): + def visit_arithmetic_operation(self, node: ast.ArithmeticOperation): self.visit(node.left) self.visit(node.right) @@ -262,8 +262,8 @@ def visit_alias(self, node: ast.Alias): expr=self.visit(node.expr), ) - def visit_binary_operation(self, node: ast.BinaryOperation): - return ast.BinaryOperation( + def visit_arithmetic_operation(self, node: ast.ArithmeticOperation): + return ast.ArithmeticOperation( start=None if self.clear_locations else node.start, end=None if self.clear_locations else node.end, type=None if self.clear_types else node.type, From bb6347482e9e14cc522efd6a0de323185a1d5e7e Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Tue, 27 Jun 2023 23:00:06 +0200 Subject: [PATCH 02/13] LtE to LtEq --- posthog/hogql/ast.py | 4 ++-- posthog/hogql/parser.py | 4 ++-- posthog/hogql/printer.py | 4 ++-- posthog/hogql/property.py | 4 ++-- posthog/hogql/test/test_parser.py | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/posthog/hogql/ast.py b/posthog/hogql/ast.py index 57354f0a71bb2..4680edd52c7ba 100644 --- a/posthog/hogql/ast.py +++ b/posthog/hogql/ast.py @@ -334,9 +334,9 @@ class CompareOperationOp(str, Enum): Eq = "==" NotEq = "!=" Gt = ">" - GtE = ">=" + GtEq = ">=" Lt = "<" - LtE = "<=" + LtEq = "<=" Like = "like" ILike = "ilike" NotLike = "not like" diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index b24123ce79e92..28a2a0bde1238 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -462,11 +462,11 @@ def visitColumnExprPrecedence3(self, ctx: HogQLParser.ColumnExprPrecedence3Conte elif ctx.LT(): op = ast.CompareOperationOp.Lt elif ctx.LE(): - op = ast.CompareOperationOp.LtE + op = ast.CompareOperationOp.LtEq elif ctx.GT(): op = ast.CompareOperationOp.Gt elif ctx.GE(): - op = ast.CompareOperationOp.GtE + op = ast.CompareOperationOp.GtEq elif ctx.LIKE(): if ctx.NOT(): op = ast.CompareOperationOp.NotLike diff --git a/posthog/hogql/printer.py b/posthog/hogql/printer.py index c1504f1a6748f..dc456ac28b73a 100644 --- a/posthog/hogql/printer.py +++ b/posthog/hogql/printer.py @@ -388,11 +388,11 @@ def visit_compare_operation(self, node: ast.CompareOperation): elif node.op == ast.CompareOperationOp.Gt: return f"greater({left}, {right})" - elif node.op == ast.CompareOperationOp.GtE: + elif node.op == ast.CompareOperationOp.GtEq: return f"greaterOrEquals({left}, {right})" elif node.op == ast.CompareOperationOp.Lt: return f"less({left}, {right})" - elif node.op == ast.CompareOperationOp.LtE: + elif node.op == ast.CompareOperationOp.LtEq: return f"lessOrEquals({left}, {right})" elif node.op == ast.CompareOperationOp.Like: return f"like({left}, {right})" diff --git a/posthog/hogql/property.py b/posthog/hogql/property.py index 2a92ec1489f2f..9f1461efc6b74 100644 --- a/posthog/hogql/property.py +++ b/posthog/hogql/property.py @@ -134,9 +134,9 @@ def property_to_expr(property: Union[BaseModel, PropertyGroup, Property, dict, l elif operator == PropertyOperator.gt or operator == PropertyOperator.is_date_after: op = ast.CompareOperationOp.Gt elif operator == PropertyOperator.lte: - op = ast.CompareOperationOp.LtE + op = ast.CompareOperationOp.LtEq elif operator == PropertyOperator.gte: - op = ast.CompareOperationOp.GtE + op = ast.CompareOperationOp.GtEq else: raise NotImplementedException(f"PropertyOperator {operator} not implemented") diff --git a/posthog/hogql/test/test_parser.py b/posthog/hogql/test/test_parser.py index 792648497bc84..e8c65a0ce5f3b 100644 --- a/posthog/hogql/test/test_parser.py +++ b/posthog/hogql/test/test_parser.py @@ -246,7 +246,7 @@ def test_math_comparison_operations(self): self.assertEqual( self._expr("1 <= 2"), ast.CompareOperation( - left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.CompareOperationOp.LtE + left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.CompareOperationOp.LtEq ), ) self.assertEqual( @@ -256,7 +256,7 @@ def test_math_comparison_operations(self): self.assertEqual( self._expr("1 >= 2"), ast.CompareOperation( - left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.CompareOperationOp.GtE + left=ast.Constant(value=1), right=ast.Constant(value=2), op=ast.CompareOperationOp.GtEq ), ) From 1d6b45c1568a78698476b5ca01f8129505354010 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Tue, 27 Jun 2023 23:02:38 +0200 Subject: [PATCH 03/13] use not* functions --- posthog/hogql/printer.py | 6 +++--- posthog/hogql/test/test_printer.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/posthog/hogql/printer.py b/posthog/hogql/printer.py index dc456ac28b73a..0c52e6b61d2c8 100644 --- a/posthog/hogql/printer.py +++ b/posthog/hogql/printer.py @@ -399,13 +399,13 @@ def visit_compare_operation(self, node: ast.CompareOperation): elif node.op == ast.CompareOperationOp.ILike: return f"ilike({left}, {right})" elif node.op == ast.CompareOperationOp.NotLike: - return f"not(like({left}, {right}))" + return f"notLike({left}, {right})" elif node.op == ast.CompareOperationOp.NotILike: - return f"not(ilike({left}, {right}))" + return f"notILike({left}, {right})" elif node.op == ast.CompareOperationOp.In: return f"in({left}, {right})" elif node.op == ast.CompareOperationOp.NotIn: - return f"not(in({left}, {right}))" + return f"notIn({left}, {right})" elif node.op == ast.CompareOperationOp.Regex: return f"match({left}, {right})" elif node.op == ast.CompareOperationOp.NotRegex: diff --git a/posthog/hogql/test/test_printer.py b/posthog/hogql/test/test_printer.py index 0643f8899cf39..5fbed9c410db5 100644 --- a/posthog/hogql/test/test_printer.py +++ b/posthog/hogql/test/test_printer.py @@ -302,11 +302,11 @@ def test_comparisons(self): self.assertEqual(self._expr("event < 'E'", context), "less(events.event, %(hogql_val_4)s)") self.assertEqual(self._expr("event <= 'E'", context), "lessOrEquals(events.event, %(hogql_val_5)s)") self.assertEqual(self._expr("event like 'E'", context), "like(events.event, %(hogql_val_6)s)") - self.assertEqual(self._expr("event not like 'E'", context), "not(like(events.event, %(hogql_val_7)s))") + self.assertEqual(self._expr("event not like 'E'", context), "notLike(events.event, %(hogql_val_7)s)") self.assertEqual(self._expr("event ilike 'E'", context), "ilike(events.event, %(hogql_val_8)s)") - self.assertEqual(self._expr("event not ilike 'E'", context), "not(ilike(events.event, %(hogql_val_9)s))") + self.assertEqual(self._expr("event not ilike 'E'", context), "notILike(events.event, %(hogql_val_9)s)") self.assertEqual(self._expr("event in 'E'", context), "in(events.event, %(hogql_val_10)s)") - self.assertEqual(self._expr("event not in 'E'", context), "not(in(events.event, %(hogql_val_11)s))") + self.assertEqual(self._expr("event not in 'E'", context), "notIn(events.event, %(hogql_val_11)s)") def test_comments(self): context = HogQLContext(team_id=self.team.pk) From 57920ac94c9a8d89b10f46c3bcd9e271840fe5b7 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Tue, 27 Jun 2023 23:12:24 +0200 Subject: [PATCH 04/13] LT_EQ style lexer tokens --- posthog/hogql/grammar/HogQLLexer.g4 | 4 +- posthog/hogql/grammar/HogQLLexer.interp | 12 +-- posthog/hogql/grammar/HogQLLexer.py | 28 +++---- posthog/hogql/grammar/HogQLLexer.tokens | 10 +-- posthog/hogql/grammar/HogQLParser.g4 | 4 +- posthog/hogql/grammar/HogQLParser.interp | 8 +- posthog/hogql/grammar/HogQLParser.py | 98 ++++++++++++------------ posthog/hogql/grammar/HogQLParser.tokens | 10 +-- posthog/hogql/parser.py | 4 +- 9 files changed, 89 insertions(+), 89 deletions(-) diff --git a/posthog/hogql/grammar/HogQLLexer.g4 b/posthog/hogql/grammar/HogQLLexer.g4 index daf86580df2f4..6d3fb40340e9c 100644 --- a/posthog/hogql/grammar/HogQLLexer.g4 +++ b/posthog/hogql/grammar/HogQLLexer.g4 @@ -279,13 +279,13 @@ DOLLAR: '$'; DOT: '.'; EQ_DOUBLE: '=='; EQ_SINGLE: '='; -GE: '>='; +GT_EQ: '>='; GT: '>'; HASH: '#'; LBRACE: '{'; LBRACKET: '['; -LE: '<='; LPAREN: '('; +LT_EQ: '<='; LT: '<'; NOT_EQ: '!=' | '<>'; PERCENT: '%'; diff --git a/posthog/hogql/grammar/HogQLLexer.interp b/posthog/hogql/grammar/HogQLLexer.interp index df2a10355bda5..95f7d7682b29b 100644 --- a/posthog/hogql/grammar/HogQLLexer.interp +++ b/posthog/hogql/grammar/HogQLLexer.interp @@ -217,8 +217,8 @@ null '#' '{' '[' -'<=' '(' +'<=' '<' null '%' @@ -450,13 +450,13 @@ DOLLAR DOT EQ_DOUBLE EQ_SINGLE -GE +GT_EQ GT HASH LBRACE LBRACKET -LE LPAREN +LT_EQ LT NOT_EQ PERCENT @@ -717,13 +717,13 @@ DOLLAR DOT EQ_DOUBLE EQ_SINGLE -GE +GT_EQ GT HASH LBRACE LBRACKET -LE LPAREN +LT_EQ LT NOT_EQ PERCENT @@ -749,4 +749,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 235, 2186, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 594, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1099, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 1813, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 1856, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 1861, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1867, 8, 193, 10, 193, 12, 193, 1870, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1878, 8, 193, 10, 193, 12, 193, 1881, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1891, 8, 193, 10, 193, 12, 193, 1894, 9, 193, 1, 193, 1, 193, 3, 193, 1898, 8, 193, 1, 194, 1, 194, 1, 194, 5, 194, 1903, 8, 194, 10, 194, 12, 194, 1906, 9, 194, 1, 194, 1, 194, 3, 194, 1910, 8, 194, 1, 194, 1, 194, 3, 194, 1914, 8, 194, 1, 194, 4, 194, 1917, 8, 194, 11, 194, 12, 194, 1918, 1, 194, 1, 194, 1, 194, 3, 194, 1924, 8, 194, 1, 194, 1, 194, 3, 194, 1928, 8, 194, 1, 194, 4, 194, 1931, 8, 194, 11, 194, 12, 194, 1932, 1, 194, 1, 194, 1, 194, 5, 194, 1938, 8, 194, 10, 194, 12, 194, 1941, 9, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1946, 8, 194, 1, 194, 4, 194, 1949, 8, 194, 11, 194, 12, 194, 1950, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1958, 8, 194, 1, 194, 4, 194, 1961, 8, 194, 11, 194, 12, 194, 1962, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1969, 8, 194, 1, 194, 4, 194, 1972, 8, 194, 11, 194, 12, 194, 1973, 3, 194, 1976, 8, 194, 1, 195, 1, 195, 4, 195, 1980, 8, 195, 11, 195, 12, 195, 1981, 1, 196, 4, 196, 1985, 8, 196, 11, 196, 12, 196, 1986, 1, 197, 1, 197, 1, 197, 4, 197, 1992, 8, 197, 11, 197, 12, 197, 1993, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2002, 8, 198, 10, 198, 12, 198, 2005, 9, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2015, 8, 199, 10, 199, 12, 199, 2018, 9, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 1, 223, 1, 223, 1, 224, 1, 224, 1, 225, 1, 225, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 2131, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 1, 253, 1, 253, 1, 254, 1, 254, 1, 255, 1, 255, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 2159, 8, 262, 10, 262, 12, 262, 2162, 9, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 2173, 8, 263, 10, 263, 12, 263, 2176, 9, 263, 1, 263, 3, 263, 2179, 8, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 2160, 0, 265, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 0, 451, 0, 453, 0, 455, 0, 457, 0, 459, 0, 461, 201, 463, 202, 465, 203, 467, 204, 469, 205, 471, 206, 473, 207, 475, 208, 477, 209, 479, 210, 481, 211, 483, 212, 485, 213, 487, 214, 489, 215, 491, 216, 493, 217, 495, 218, 497, 219, 499, 220, 501, 221, 503, 222, 505, 223, 507, 224, 509, 225, 511, 226, 513, 227, 515, 228, 517, 229, 519, 230, 521, 231, 523, 232, 525, 233, 527, 234, 529, 235, 1, 0, 37, 2, 0, 92, 92, 96, 96, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 2, 0, 92, 92, 125, 125, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 65, 90, 97, 122, 1, 0, 48, 55, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 2, 0, 10, 10, 13, 13, 2, 1, 10, 10, 13, 13, 2, 0, 9, 13, 32, 32, 2216, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 1, 531, 1, 0, 0, 0, 3, 535, 1, 0, 0, 0, 5, 541, 1, 0, 0, 0, 7, 547, 1, 0, 0, 0, 9, 551, 1, 0, 0, 0, 11, 557, 1, 0, 0, 0, 13, 561, 1, 0, 0, 0, 15, 566, 1, 0, 0, 0, 17, 570, 1, 0, 0, 0, 19, 576, 1, 0, 0, 0, 21, 593, 1, 0, 0, 0, 23, 595, 1, 0, 0, 0, 25, 600, 1, 0, 0, 0, 27, 604, 1, 0, 0, 0, 29, 610, 1, 0, 0, 0, 31, 617, 1, 0, 0, 0, 33, 625, 1, 0, 0, 0, 35, 630, 1, 0, 0, 0, 37, 633, 1, 0, 0, 0, 39, 638, 1, 0, 0, 0, 41, 643, 1, 0, 0, 0, 43, 649, 1, 0, 0, 0, 45, 655, 1, 0, 0, 0, 47, 663, 1, 0, 0, 0, 49, 669, 1, 0, 0, 0, 51, 676, 1, 0, 0, 0, 53, 684, 1, 0, 0, 0, 55, 691, 1, 0, 0, 0, 57, 699, 1, 0, 0, 0, 59, 710, 1, 0, 0, 0, 61, 717, 1, 0, 0, 0, 63, 723, 1, 0, 0, 0, 65, 728, 1, 0, 0, 0, 67, 736, 1, 0, 0, 0, 69, 745, 1, 0, 0, 0, 71, 755, 1, 0, 0, 0, 73, 760, 1, 0, 0, 0, 75, 764, 1, 0, 0, 0, 77, 776, 1, 0, 0, 0, 79, 784, 1, 0, 0, 0, 81, 790, 1, 0, 0, 0, 83, 797, 1, 0, 0, 0, 85, 802, 1, 0, 0, 0, 87, 813, 1, 0, 0, 0, 89, 822, 1, 0, 0, 0, 91, 829, 1, 0, 0, 0, 93, 842, 1, 0, 0, 0, 95, 853, 1, 0, 0, 0, 97, 858, 1, 0, 0, 0, 99, 867, 1, 0, 0, 0, 101, 879, 1, 0, 0, 0, 103, 884, 1, 0, 0, 0, 105, 889, 1, 0, 0, 0, 107, 893, 1, 0, 0, 0, 109, 900, 1, 0, 0, 0, 111, 907, 1, 0, 0, 0, 113, 914, 1, 0, 0, 0, 115, 922, 1, 0, 0, 0, 117, 933, 1, 0, 0, 0, 119, 941, 1, 0, 0, 0, 121, 949, 1, 0, 0, 0, 123, 955, 1, 0, 0, 0, 125, 961, 1, 0, 0, 0, 127, 967, 1, 0, 0, 0, 129, 977, 1, 0, 0, 0, 131, 981, 1, 0, 0, 0, 133, 988, 1, 0, 0, 0, 135, 995, 1, 0, 0, 0, 137, 1000, 1, 0, 0, 0, 139, 1005, 1, 0, 0, 0, 141, 1014, 1, 0, 0, 0, 143, 1021, 1, 0, 0, 0, 145, 1033, 1, 0, 0, 0, 147, 1039, 1, 0, 0, 0, 149, 1046, 1, 0, 0, 0, 151, 1059, 1, 0, 0, 0, 153, 1064, 1, 0, 0, 0, 155, 1067, 1, 0, 0, 0, 157, 1070, 1, 0, 0, 0, 159, 1076, 1, 0, 0, 0, 161, 1079, 1, 0, 0, 0, 163, 1098, 1, 0, 0, 0, 165, 1100, 1, 0, 0, 0, 167, 1110, 1, 0, 0, 0, 169, 1116, 1, 0, 0, 0, 171, 1123, 1, 0, 0, 0, 173, 1132, 1, 0, 0, 0, 175, 1137, 1, 0, 0, 0, 177, 1140, 1, 0, 0, 0, 179, 1153, 1, 0, 0, 0, 181, 1158, 1, 0, 0, 0, 183, 1162, 1, 0, 0, 0, 185, 1167, 1, 0, 0, 0, 187, 1172, 1, 0, 0, 0, 189, 1179, 1, 0, 0, 0, 191, 1187, 1, 0, 0, 0, 193, 1192, 1, 0, 0, 0, 195, 1201, 1, 0, 0, 0, 197, 1206, 1, 0, 0, 0, 199, 1212, 1, 0, 0, 0, 201, 1217, 1, 0, 0, 0, 203, 1223, 1, 0, 0, 0, 205, 1228, 1, 0, 0, 0, 207, 1240, 1, 0, 0, 0, 209, 1253, 1, 0, 0, 0, 211, 1257, 1, 0, 0, 0, 213, 1264, 1, 0, 0, 0, 215, 1268, 1, 0, 0, 0, 217, 1275, 1, 0, 0, 0, 219, 1282, 1, 0, 0, 0, 221, 1288, 1, 0, 0, 0, 223, 1293, 1, 0, 0, 0, 225, 1302, 1, 0, 0, 0, 227, 1306, 1, 0, 0, 0, 229, 1309, 1, 0, 0, 0, 231, 1313, 1, 0, 0, 0, 233, 1318, 1, 0, 0, 0, 235, 1324, 1, 0, 0, 0, 237, 1331, 1, 0, 0, 0, 239, 1334, 1, 0, 0, 0, 241, 1343, 1, 0, 0, 0, 243, 1346, 1, 0, 0, 0, 245, 1352, 1, 0, 0, 0, 247, 1358, 1, 0, 0, 0, 249, 1366, 1, 0, 0, 0, 251, 1371, 1, 0, 0, 0, 253, 1381, 1, 0, 0, 0, 255, 1390, 1, 0, 0, 0, 257, 1400, 1, 0, 0, 0, 259, 1409, 1, 0, 0, 0, 261, 1417, 1, 0, 0, 0, 263, 1428, 1, 0, 0, 0, 265, 1436, 1, 0, 0, 0, 267, 1442, 1, 0, 0, 0, 269, 1449, 1, 0, 0, 0, 271, 1456, 1, 0, 0, 0, 273, 1463, 1, 0, 0, 0, 275, 1471, 1, 0, 0, 0, 277, 1479, 1, 0, 0, 0, 279, 1490, 1, 0, 0, 0, 281, 1496, 1, 0, 0, 0, 283, 1503, 1, 0, 0, 0, 285, 1507, 1, 0, 0, 0, 287, 1512, 1, 0, 0, 0, 289, 1519, 1, 0, 0, 0, 291, 1526, 1, 0, 0, 0, 293, 1533, 1, 0, 0, 0, 295, 1538, 1, 0, 0, 0, 297, 1544, 1, 0, 0, 0, 299, 1548, 1, 0, 0, 0, 301, 1557, 1, 0, 0, 0, 303, 1562, 1, 0, 0, 0, 305, 1569, 1, 0, 0, 0, 307, 1575, 1, 0, 0, 0, 309, 1580, 1, 0, 0, 0, 311, 1590, 1, 0, 0, 0, 313, 1595, 1, 0, 0, 0, 315, 1602, 1, 0, 0, 0, 317, 1609, 1, 0, 0, 0, 319, 1615, 1, 0, 0, 0, 321, 1622, 1, 0, 0, 0, 323, 1632, 1, 0, 0, 0, 325, 1637, 1, 0, 0, 0, 327, 1642, 1, 0, 0, 0, 329, 1647, 1, 0, 0, 0, 331, 1655, 1, 0, 0, 0, 333, 1665, 1, 0, 0, 0, 335, 1668, 1, 0, 0, 0, 337, 1672, 1, 0, 0, 0, 339, 1679, 1, 0, 0, 0, 341, 1688, 1, 0, 0, 0, 343, 1693, 1, 0, 0, 0, 345, 1702, 1, 0, 0, 0, 347, 1706, 1, 0, 0, 0, 349, 1711, 1, 0, 0, 0, 351, 1721, 1, 0, 0, 0, 353, 1727, 1, 0, 0, 0, 355, 1734, 1, 0, 0, 0, 357, 1738, 1, 0, 0, 0, 359, 1744, 1, 0, 0, 0, 361, 1749, 1, 0, 0, 0, 363, 1756, 1, 0, 0, 0, 365, 1761, 1, 0, 0, 0, 367, 1768, 1, 0, 0, 0, 369, 1774, 1, 0, 0, 0, 371, 1779, 1, 0, 0, 0, 373, 1784, 1, 0, 0, 0, 375, 1790, 1, 0, 0, 0, 377, 1797, 1, 0, 0, 0, 379, 1812, 1, 0, 0, 0, 381, 1814, 1, 0, 0, 0, 383, 1820, 1, 0, 0, 0, 385, 1855, 1, 0, 0, 0, 387, 1897, 1, 0, 0, 0, 389, 1975, 1, 0, 0, 0, 391, 1977, 1, 0, 0, 0, 393, 1984, 1, 0, 0, 0, 395, 1988, 1, 0, 0, 0, 397, 1995, 1, 0, 0, 0, 399, 2008, 1, 0, 0, 0, 401, 2021, 1, 0, 0, 0, 403, 2023, 1, 0, 0, 0, 405, 2025, 1, 0, 0, 0, 407, 2027, 1, 0, 0, 0, 409, 2029, 1, 0, 0, 0, 411, 2031, 1, 0, 0, 0, 413, 2033, 1, 0, 0, 0, 415, 2035, 1, 0, 0, 0, 417, 2037, 1, 0, 0, 0, 419, 2039, 1, 0, 0, 0, 421, 2041, 1, 0, 0, 0, 423, 2043, 1, 0, 0, 0, 425, 2045, 1, 0, 0, 0, 427, 2047, 1, 0, 0, 0, 429, 2049, 1, 0, 0, 0, 431, 2051, 1, 0, 0, 0, 433, 2053, 1, 0, 0, 0, 435, 2055, 1, 0, 0, 0, 437, 2057, 1, 0, 0, 0, 439, 2059, 1, 0, 0, 0, 441, 2061, 1, 0, 0, 0, 443, 2063, 1, 0, 0, 0, 445, 2065, 1, 0, 0, 0, 447, 2067, 1, 0, 0, 0, 449, 2069, 1, 0, 0, 0, 451, 2071, 1, 0, 0, 0, 453, 2073, 1, 0, 0, 0, 455, 2075, 1, 0, 0, 0, 457, 2077, 1, 0, 0, 0, 459, 2079, 1, 0, 0, 0, 461, 2081, 1, 0, 0, 0, 463, 2084, 1, 0, 0, 0, 465, 2086, 1, 0, 0, 0, 467, 2088, 1, 0, 0, 0, 469, 2090, 1, 0, 0, 0, 471, 2092, 1, 0, 0, 0, 473, 2094, 1, 0, 0, 0, 475, 2097, 1, 0, 0, 0, 477, 2099, 1, 0, 0, 0, 479, 2101, 1, 0, 0, 0, 481, 2103, 1, 0, 0, 0, 483, 2106, 1, 0, 0, 0, 485, 2108, 1, 0, 0, 0, 487, 2111, 1, 0, 0, 0, 489, 2113, 1, 0, 0, 0, 491, 2115, 1, 0, 0, 0, 493, 2117, 1, 0, 0, 0, 495, 2119, 1, 0, 0, 0, 497, 2122, 1, 0, 0, 0, 499, 2124, 1, 0, 0, 0, 501, 2130, 1, 0, 0, 0, 503, 2132, 1, 0, 0, 0, 505, 2134, 1, 0, 0, 0, 507, 2136, 1, 0, 0, 0, 509, 2138, 1, 0, 0, 0, 511, 2140, 1, 0, 0, 0, 513, 2142, 1, 0, 0, 0, 515, 2144, 1, 0, 0, 0, 517, 2146, 1, 0, 0, 0, 519, 2148, 1, 0, 0, 0, 521, 2150, 1, 0, 0, 0, 523, 2152, 1, 0, 0, 0, 525, 2154, 1, 0, 0, 0, 527, 2168, 1, 0, 0, 0, 529, 2182, 1, 0, 0, 0, 531, 532, 3, 401, 200, 0, 532, 533, 3, 407, 203, 0, 533, 534, 3, 407, 203, 0, 534, 2, 1, 0, 0, 0, 535, 536, 3, 401, 200, 0, 536, 537, 3, 411, 205, 0, 537, 538, 3, 439, 219, 0, 538, 539, 3, 409, 204, 0, 539, 540, 3, 435, 217, 0, 540, 4, 1, 0, 0, 0, 541, 542, 3, 401, 200, 0, 542, 543, 3, 423, 211, 0, 543, 544, 3, 417, 208, 0, 544, 545, 3, 401, 200, 0, 545, 546, 3, 437, 218, 0, 546, 6, 1, 0, 0, 0, 547, 548, 3, 401, 200, 0, 548, 549, 3, 423, 211, 0, 549, 550, 3, 423, 211, 0, 550, 8, 1, 0, 0, 0, 551, 552, 3, 401, 200, 0, 552, 553, 3, 423, 211, 0, 553, 554, 3, 439, 219, 0, 554, 555, 3, 409, 204, 0, 555, 556, 3, 435, 217, 0, 556, 10, 1, 0, 0, 0, 557, 558, 3, 401, 200, 0, 558, 559, 3, 427, 213, 0, 559, 560, 3, 407, 203, 0, 560, 12, 1, 0, 0, 0, 561, 562, 3, 401, 200, 0, 562, 563, 3, 427, 213, 0, 563, 564, 3, 439, 219, 0, 564, 565, 3, 417, 208, 0, 565, 14, 1, 0, 0, 0, 566, 567, 3, 401, 200, 0, 567, 568, 3, 427, 213, 0, 568, 569, 3, 449, 224, 0, 569, 16, 1, 0, 0, 0, 570, 571, 3, 401, 200, 0, 571, 572, 3, 435, 217, 0, 572, 573, 3, 435, 217, 0, 573, 574, 3, 401, 200, 0, 574, 575, 3, 449, 224, 0, 575, 18, 1, 0, 0, 0, 576, 577, 3, 401, 200, 0, 577, 578, 3, 437, 218, 0, 578, 20, 1, 0, 0, 0, 579, 580, 3, 401, 200, 0, 580, 581, 3, 437, 218, 0, 581, 582, 3, 405, 202, 0, 582, 594, 1, 0, 0, 0, 583, 584, 3, 401, 200, 0, 584, 585, 3, 437, 218, 0, 585, 586, 3, 405, 202, 0, 586, 587, 3, 409, 204, 0, 587, 588, 3, 427, 213, 0, 588, 589, 3, 407, 203, 0, 589, 590, 3, 417, 208, 0, 590, 591, 3, 427, 213, 0, 591, 592, 3, 413, 206, 0, 592, 594, 1, 0, 0, 0, 593, 579, 1, 0, 0, 0, 593, 583, 1, 0, 0, 0, 594, 22, 1, 0, 0, 0, 595, 596, 3, 401, 200, 0, 596, 597, 3, 437, 218, 0, 597, 598, 3, 429, 214, 0, 598, 599, 3, 411, 205, 0, 599, 24, 1, 0, 0, 0, 600, 601, 3, 401, 200, 0, 601, 602, 3, 437, 218, 0, 602, 603, 3, 439, 219, 0, 603, 26, 1, 0, 0, 0, 604, 605, 3, 401, 200, 0, 605, 606, 3, 437, 218, 0, 606, 607, 3, 449, 224, 0, 607, 608, 3, 427, 213, 0, 608, 609, 3, 405, 202, 0, 609, 28, 1, 0, 0, 0, 610, 611, 3, 401, 200, 0, 611, 612, 3, 439, 219, 0, 612, 613, 3, 439, 219, 0, 613, 614, 3, 401, 200, 0, 614, 615, 3, 405, 202, 0, 615, 616, 3, 415, 207, 0, 616, 30, 1, 0, 0, 0, 617, 618, 3, 403, 201, 0, 618, 619, 3, 409, 204, 0, 619, 620, 3, 439, 219, 0, 620, 621, 3, 445, 222, 0, 621, 622, 3, 409, 204, 0, 622, 623, 3, 409, 204, 0, 623, 624, 3, 427, 213, 0, 624, 32, 1, 0, 0, 0, 625, 626, 3, 403, 201, 0, 626, 627, 3, 429, 214, 0, 627, 628, 3, 439, 219, 0, 628, 629, 3, 415, 207, 0, 629, 34, 1, 0, 0, 0, 630, 631, 3, 403, 201, 0, 631, 632, 3, 449, 224, 0, 632, 36, 1, 0, 0, 0, 633, 634, 3, 405, 202, 0, 634, 635, 3, 401, 200, 0, 635, 636, 3, 437, 218, 0, 636, 637, 3, 409, 204, 0, 637, 38, 1, 0, 0, 0, 638, 639, 3, 405, 202, 0, 639, 640, 3, 401, 200, 0, 640, 641, 3, 437, 218, 0, 641, 642, 3, 439, 219, 0, 642, 40, 1, 0, 0, 0, 643, 644, 3, 405, 202, 0, 644, 645, 3, 415, 207, 0, 645, 646, 3, 409, 204, 0, 646, 647, 3, 405, 202, 0, 647, 648, 3, 421, 210, 0, 648, 42, 1, 0, 0, 0, 649, 650, 3, 405, 202, 0, 650, 651, 3, 423, 211, 0, 651, 652, 3, 409, 204, 0, 652, 653, 3, 401, 200, 0, 653, 654, 3, 435, 217, 0, 654, 44, 1, 0, 0, 0, 655, 656, 3, 405, 202, 0, 656, 657, 3, 423, 211, 0, 657, 658, 3, 441, 220, 0, 658, 659, 3, 437, 218, 0, 659, 660, 3, 439, 219, 0, 660, 661, 3, 409, 204, 0, 661, 662, 3, 435, 217, 0, 662, 46, 1, 0, 0, 0, 663, 664, 3, 405, 202, 0, 664, 665, 3, 429, 214, 0, 665, 666, 3, 407, 203, 0, 666, 667, 3, 409, 204, 0, 667, 668, 3, 405, 202, 0, 668, 48, 1, 0, 0, 0, 669, 670, 3, 405, 202, 0, 670, 671, 3, 429, 214, 0, 671, 672, 3, 415, 207, 0, 672, 673, 3, 429, 214, 0, 673, 674, 3, 435, 217, 0, 674, 675, 3, 439, 219, 0, 675, 50, 1, 0, 0, 0, 676, 677, 3, 405, 202, 0, 677, 678, 3, 429, 214, 0, 678, 679, 3, 423, 211, 0, 679, 680, 3, 423, 211, 0, 680, 681, 3, 401, 200, 0, 681, 682, 3, 439, 219, 0, 682, 683, 3, 409, 204, 0, 683, 52, 1, 0, 0, 0, 684, 685, 3, 405, 202, 0, 685, 686, 3, 429, 214, 0, 686, 687, 3, 423, 211, 0, 687, 688, 3, 441, 220, 0, 688, 689, 3, 425, 212, 0, 689, 690, 3, 427, 213, 0, 690, 54, 1, 0, 0, 0, 691, 692, 3, 405, 202, 0, 692, 693, 3, 429, 214, 0, 693, 694, 3, 425, 212, 0, 694, 695, 3, 425, 212, 0, 695, 696, 3, 409, 204, 0, 696, 697, 3, 427, 213, 0, 697, 698, 3, 439, 219, 0, 698, 56, 1, 0, 0, 0, 699, 700, 3, 405, 202, 0, 700, 701, 3, 429, 214, 0, 701, 702, 3, 427, 213, 0, 702, 703, 3, 437, 218, 0, 703, 704, 3, 439, 219, 0, 704, 705, 3, 435, 217, 0, 705, 706, 3, 401, 200, 0, 706, 707, 3, 417, 208, 0, 707, 708, 3, 427, 213, 0, 708, 709, 3, 439, 219, 0, 709, 58, 1, 0, 0, 0, 710, 711, 3, 405, 202, 0, 711, 712, 3, 435, 217, 0, 712, 713, 3, 409, 204, 0, 713, 714, 3, 401, 200, 0, 714, 715, 3, 439, 219, 0, 715, 716, 3, 409, 204, 0, 716, 60, 1, 0, 0, 0, 717, 718, 3, 405, 202, 0, 718, 719, 3, 435, 217, 0, 719, 720, 3, 429, 214, 0, 720, 721, 3, 437, 218, 0, 721, 722, 3, 437, 218, 0, 722, 62, 1, 0, 0, 0, 723, 724, 3, 405, 202, 0, 724, 725, 3, 441, 220, 0, 725, 726, 3, 403, 201, 0, 726, 727, 3, 409, 204, 0, 727, 64, 1, 0, 0, 0, 728, 729, 3, 405, 202, 0, 729, 730, 3, 441, 220, 0, 730, 731, 3, 435, 217, 0, 731, 732, 3, 435, 217, 0, 732, 733, 3, 409, 204, 0, 733, 734, 3, 427, 213, 0, 734, 735, 3, 439, 219, 0, 735, 66, 1, 0, 0, 0, 736, 737, 3, 407, 203, 0, 737, 738, 3, 401, 200, 0, 738, 739, 3, 439, 219, 0, 739, 740, 3, 401, 200, 0, 740, 741, 3, 403, 201, 0, 741, 742, 3, 401, 200, 0, 742, 743, 3, 437, 218, 0, 743, 744, 3, 409, 204, 0, 744, 68, 1, 0, 0, 0, 745, 746, 3, 407, 203, 0, 746, 747, 3, 401, 200, 0, 747, 748, 3, 439, 219, 0, 748, 749, 3, 401, 200, 0, 749, 750, 3, 403, 201, 0, 750, 751, 3, 401, 200, 0, 751, 752, 3, 437, 218, 0, 752, 753, 3, 409, 204, 0, 753, 754, 3, 437, 218, 0, 754, 70, 1, 0, 0, 0, 755, 756, 3, 407, 203, 0, 756, 757, 3, 401, 200, 0, 757, 758, 3, 439, 219, 0, 758, 759, 3, 409, 204, 0, 759, 72, 1, 0, 0, 0, 760, 761, 3, 407, 203, 0, 761, 762, 3, 401, 200, 0, 762, 763, 3, 449, 224, 0, 763, 74, 1, 0, 0, 0, 764, 765, 3, 407, 203, 0, 765, 766, 3, 409, 204, 0, 766, 767, 3, 407, 203, 0, 767, 768, 3, 441, 220, 0, 768, 769, 3, 431, 215, 0, 769, 770, 3, 423, 211, 0, 770, 771, 3, 417, 208, 0, 771, 772, 3, 405, 202, 0, 772, 773, 3, 401, 200, 0, 773, 774, 3, 439, 219, 0, 774, 775, 3, 409, 204, 0, 775, 76, 1, 0, 0, 0, 776, 777, 3, 407, 203, 0, 777, 778, 3, 409, 204, 0, 778, 779, 3, 411, 205, 0, 779, 780, 3, 401, 200, 0, 780, 781, 3, 441, 220, 0, 781, 782, 3, 423, 211, 0, 782, 783, 3, 439, 219, 0, 783, 78, 1, 0, 0, 0, 784, 785, 3, 407, 203, 0, 785, 786, 3, 409, 204, 0, 786, 787, 3, 423, 211, 0, 787, 788, 3, 401, 200, 0, 788, 789, 3, 449, 224, 0, 789, 80, 1, 0, 0, 0, 790, 791, 3, 407, 203, 0, 791, 792, 3, 409, 204, 0, 792, 793, 3, 423, 211, 0, 793, 794, 3, 409, 204, 0, 794, 795, 3, 439, 219, 0, 795, 796, 3, 409, 204, 0, 796, 82, 1, 0, 0, 0, 797, 798, 3, 407, 203, 0, 798, 799, 3, 409, 204, 0, 799, 800, 3, 437, 218, 0, 800, 801, 3, 405, 202, 0, 801, 84, 1, 0, 0, 0, 802, 803, 3, 407, 203, 0, 803, 804, 3, 409, 204, 0, 804, 805, 3, 437, 218, 0, 805, 806, 3, 405, 202, 0, 806, 807, 3, 409, 204, 0, 807, 808, 3, 427, 213, 0, 808, 809, 3, 407, 203, 0, 809, 810, 3, 417, 208, 0, 810, 811, 3, 427, 213, 0, 811, 812, 3, 413, 206, 0, 812, 86, 1, 0, 0, 0, 813, 814, 3, 407, 203, 0, 814, 815, 3, 409, 204, 0, 815, 816, 3, 437, 218, 0, 816, 817, 3, 405, 202, 0, 817, 818, 3, 435, 217, 0, 818, 819, 3, 417, 208, 0, 819, 820, 3, 403, 201, 0, 820, 821, 3, 409, 204, 0, 821, 88, 1, 0, 0, 0, 822, 823, 3, 407, 203, 0, 823, 824, 3, 409, 204, 0, 824, 825, 3, 439, 219, 0, 825, 826, 3, 401, 200, 0, 826, 827, 3, 405, 202, 0, 827, 828, 3, 415, 207, 0, 828, 90, 1, 0, 0, 0, 829, 830, 3, 407, 203, 0, 830, 831, 3, 417, 208, 0, 831, 832, 3, 405, 202, 0, 832, 833, 3, 439, 219, 0, 833, 834, 3, 417, 208, 0, 834, 835, 3, 429, 214, 0, 835, 836, 3, 427, 213, 0, 836, 837, 3, 401, 200, 0, 837, 838, 3, 435, 217, 0, 838, 839, 3, 417, 208, 0, 839, 840, 3, 409, 204, 0, 840, 841, 3, 437, 218, 0, 841, 92, 1, 0, 0, 0, 842, 843, 3, 407, 203, 0, 843, 844, 3, 417, 208, 0, 844, 845, 3, 405, 202, 0, 845, 846, 3, 439, 219, 0, 846, 847, 3, 417, 208, 0, 847, 848, 3, 429, 214, 0, 848, 849, 3, 427, 213, 0, 849, 850, 3, 401, 200, 0, 850, 851, 3, 435, 217, 0, 851, 852, 3, 449, 224, 0, 852, 94, 1, 0, 0, 0, 853, 854, 3, 407, 203, 0, 854, 855, 3, 417, 208, 0, 855, 856, 3, 437, 218, 0, 856, 857, 3, 421, 210, 0, 857, 96, 1, 0, 0, 0, 858, 859, 3, 407, 203, 0, 859, 860, 3, 417, 208, 0, 860, 861, 3, 437, 218, 0, 861, 862, 3, 439, 219, 0, 862, 863, 3, 417, 208, 0, 863, 864, 3, 427, 213, 0, 864, 865, 3, 405, 202, 0, 865, 866, 3, 439, 219, 0, 866, 98, 1, 0, 0, 0, 867, 868, 3, 407, 203, 0, 868, 869, 3, 417, 208, 0, 869, 870, 3, 437, 218, 0, 870, 871, 3, 439, 219, 0, 871, 872, 3, 435, 217, 0, 872, 873, 3, 417, 208, 0, 873, 874, 3, 403, 201, 0, 874, 875, 3, 441, 220, 0, 875, 876, 3, 439, 219, 0, 876, 877, 3, 409, 204, 0, 877, 878, 3, 407, 203, 0, 878, 100, 1, 0, 0, 0, 879, 880, 3, 407, 203, 0, 880, 881, 3, 435, 217, 0, 881, 882, 3, 429, 214, 0, 882, 883, 3, 431, 215, 0, 883, 102, 1, 0, 0, 0, 884, 885, 3, 409, 204, 0, 885, 886, 3, 423, 211, 0, 886, 887, 3, 437, 218, 0, 887, 888, 3, 409, 204, 0, 888, 104, 1, 0, 0, 0, 889, 890, 3, 409, 204, 0, 890, 891, 3, 427, 213, 0, 891, 892, 3, 407, 203, 0, 892, 106, 1, 0, 0, 0, 893, 894, 3, 409, 204, 0, 894, 895, 3, 427, 213, 0, 895, 896, 3, 413, 206, 0, 896, 897, 3, 417, 208, 0, 897, 898, 3, 427, 213, 0, 898, 899, 3, 409, 204, 0, 899, 108, 1, 0, 0, 0, 900, 901, 3, 409, 204, 0, 901, 902, 3, 443, 221, 0, 902, 903, 3, 409, 204, 0, 903, 904, 3, 427, 213, 0, 904, 905, 3, 439, 219, 0, 905, 906, 3, 437, 218, 0, 906, 110, 1, 0, 0, 0, 907, 908, 3, 409, 204, 0, 908, 909, 3, 447, 223, 0, 909, 910, 3, 417, 208, 0, 910, 911, 3, 437, 218, 0, 911, 912, 3, 439, 219, 0, 912, 913, 3, 437, 218, 0, 913, 112, 1, 0, 0, 0, 914, 915, 3, 409, 204, 0, 915, 916, 3, 447, 223, 0, 916, 917, 3, 431, 215, 0, 917, 918, 3, 423, 211, 0, 918, 919, 3, 401, 200, 0, 919, 920, 3, 417, 208, 0, 920, 921, 3, 427, 213, 0, 921, 114, 1, 0, 0, 0, 922, 923, 3, 409, 204, 0, 923, 924, 3, 447, 223, 0, 924, 925, 3, 431, 215, 0, 925, 926, 3, 435, 217, 0, 926, 927, 3, 409, 204, 0, 927, 928, 3, 437, 218, 0, 928, 929, 3, 437, 218, 0, 929, 930, 3, 417, 208, 0, 930, 931, 3, 429, 214, 0, 931, 932, 3, 427, 213, 0, 932, 116, 1, 0, 0, 0, 933, 934, 3, 409, 204, 0, 934, 935, 3, 447, 223, 0, 935, 936, 3, 439, 219, 0, 936, 937, 3, 435, 217, 0, 937, 938, 3, 401, 200, 0, 938, 939, 3, 405, 202, 0, 939, 940, 3, 439, 219, 0, 940, 118, 1, 0, 0, 0, 941, 942, 3, 411, 205, 0, 942, 943, 3, 409, 204, 0, 943, 944, 3, 439, 219, 0, 944, 945, 3, 405, 202, 0, 945, 946, 3, 415, 207, 0, 946, 947, 3, 409, 204, 0, 947, 948, 3, 437, 218, 0, 948, 120, 1, 0, 0, 0, 949, 950, 3, 411, 205, 0, 950, 951, 3, 417, 208, 0, 951, 952, 3, 427, 213, 0, 952, 953, 3, 401, 200, 0, 953, 954, 3, 423, 211, 0, 954, 122, 1, 0, 0, 0, 955, 956, 3, 411, 205, 0, 956, 957, 3, 417, 208, 0, 957, 958, 3, 435, 217, 0, 958, 959, 3, 437, 218, 0, 959, 960, 3, 439, 219, 0, 960, 124, 1, 0, 0, 0, 961, 962, 3, 411, 205, 0, 962, 963, 3, 423, 211, 0, 963, 964, 3, 441, 220, 0, 964, 965, 3, 437, 218, 0, 965, 966, 3, 415, 207, 0, 966, 126, 1, 0, 0, 0, 967, 968, 3, 411, 205, 0, 968, 969, 3, 429, 214, 0, 969, 970, 3, 423, 211, 0, 970, 971, 3, 423, 211, 0, 971, 972, 3, 429, 214, 0, 972, 973, 3, 445, 222, 0, 973, 974, 3, 417, 208, 0, 974, 975, 3, 427, 213, 0, 975, 976, 3, 413, 206, 0, 976, 128, 1, 0, 0, 0, 977, 978, 3, 411, 205, 0, 978, 979, 3, 429, 214, 0, 979, 980, 3, 435, 217, 0, 980, 130, 1, 0, 0, 0, 981, 982, 3, 411, 205, 0, 982, 983, 3, 429, 214, 0, 983, 984, 3, 435, 217, 0, 984, 985, 3, 425, 212, 0, 985, 986, 3, 401, 200, 0, 986, 987, 3, 439, 219, 0, 987, 132, 1, 0, 0, 0, 988, 989, 3, 411, 205, 0, 989, 990, 3, 435, 217, 0, 990, 991, 3, 409, 204, 0, 991, 992, 3, 409, 204, 0, 992, 993, 3, 451, 225, 0, 993, 994, 3, 409, 204, 0, 994, 134, 1, 0, 0, 0, 995, 996, 3, 411, 205, 0, 996, 997, 3, 435, 217, 0, 997, 998, 3, 429, 214, 0, 998, 999, 3, 425, 212, 0, 999, 136, 1, 0, 0, 0, 1000, 1001, 3, 411, 205, 0, 1001, 1002, 3, 441, 220, 0, 1002, 1003, 3, 423, 211, 0, 1003, 1004, 3, 423, 211, 0, 1004, 138, 1, 0, 0, 0, 1005, 1006, 3, 411, 205, 0, 1006, 1007, 3, 441, 220, 0, 1007, 1008, 3, 427, 213, 0, 1008, 1009, 3, 405, 202, 0, 1009, 1010, 3, 439, 219, 0, 1010, 1011, 3, 417, 208, 0, 1011, 1012, 3, 429, 214, 0, 1012, 1013, 3, 427, 213, 0, 1013, 140, 1, 0, 0, 0, 1014, 1015, 3, 413, 206, 0, 1015, 1016, 3, 423, 211, 0, 1016, 1017, 3, 429, 214, 0, 1017, 1018, 3, 403, 201, 0, 1018, 1019, 3, 401, 200, 0, 1019, 1020, 3, 423, 211, 0, 1020, 142, 1, 0, 0, 0, 1021, 1022, 3, 413, 206, 0, 1022, 1023, 3, 435, 217, 0, 1023, 1024, 3, 401, 200, 0, 1024, 1025, 3, 427, 213, 0, 1025, 1026, 3, 441, 220, 0, 1026, 1027, 3, 423, 211, 0, 1027, 1028, 3, 401, 200, 0, 1028, 1029, 3, 435, 217, 0, 1029, 1030, 3, 417, 208, 0, 1030, 1031, 3, 439, 219, 0, 1031, 1032, 3, 449, 224, 0, 1032, 144, 1, 0, 0, 0, 1033, 1034, 3, 413, 206, 0, 1034, 1035, 3, 435, 217, 0, 1035, 1036, 3, 429, 214, 0, 1036, 1037, 3, 441, 220, 0, 1037, 1038, 3, 431, 215, 0, 1038, 146, 1, 0, 0, 0, 1039, 1040, 3, 415, 207, 0, 1040, 1041, 3, 401, 200, 0, 1041, 1042, 3, 443, 221, 0, 1042, 1043, 3, 417, 208, 0, 1043, 1044, 3, 427, 213, 0, 1044, 1045, 3, 413, 206, 0, 1045, 148, 1, 0, 0, 0, 1046, 1047, 3, 415, 207, 0, 1047, 1048, 3, 417, 208, 0, 1048, 1049, 3, 409, 204, 0, 1049, 1050, 3, 435, 217, 0, 1050, 1051, 3, 401, 200, 0, 1051, 1052, 3, 435, 217, 0, 1052, 1053, 3, 405, 202, 0, 1053, 1054, 3, 415, 207, 0, 1054, 1055, 3, 417, 208, 0, 1055, 1056, 3, 405, 202, 0, 1056, 1057, 3, 401, 200, 0, 1057, 1058, 3, 423, 211, 0, 1058, 150, 1, 0, 0, 0, 1059, 1060, 3, 415, 207, 0, 1060, 1061, 3, 429, 214, 0, 1061, 1062, 3, 441, 220, 0, 1062, 1063, 3, 435, 217, 0, 1063, 152, 1, 0, 0, 0, 1064, 1065, 3, 417, 208, 0, 1065, 1066, 3, 407, 203, 0, 1066, 154, 1, 0, 0, 0, 1067, 1068, 3, 417, 208, 0, 1068, 1069, 3, 411, 205, 0, 1069, 156, 1, 0, 0, 0, 1070, 1071, 3, 417, 208, 0, 1071, 1072, 3, 423, 211, 0, 1072, 1073, 3, 417, 208, 0, 1073, 1074, 3, 421, 210, 0, 1074, 1075, 3, 409, 204, 0, 1075, 158, 1, 0, 0, 0, 1076, 1077, 3, 417, 208, 0, 1077, 1078, 3, 427, 213, 0, 1078, 160, 1, 0, 0, 0, 1079, 1080, 3, 417, 208, 0, 1080, 1081, 3, 427, 213, 0, 1081, 1082, 3, 407, 203, 0, 1082, 1083, 3, 409, 204, 0, 1083, 1084, 3, 447, 223, 0, 1084, 162, 1, 0, 0, 0, 1085, 1086, 3, 417, 208, 0, 1086, 1087, 3, 427, 213, 0, 1087, 1088, 3, 411, 205, 0, 1088, 1099, 1, 0, 0, 0, 1089, 1090, 3, 417, 208, 0, 1090, 1091, 3, 427, 213, 0, 1091, 1092, 3, 411, 205, 0, 1092, 1093, 3, 417, 208, 0, 1093, 1094, 3, 427, 213, 0, 1094, 1095, 3, 417, 208, 0, 1095, 1096, 3, 439, 219, 0, 1096, 1097, 3, 449, 224, 0, 1097, 1099, 1, 0, 0, 0, 1098, 1085, 1, 0, 0, 0, 1098, 1089, 1, 0, 0, 0, 1099, 164, 1, 0, 0, 0, 1100, 1101, 3, 417, 208, 0, 1101, 1102, 3, 427, 213, 0, 1102, 1103, 3, 419, 209, 0, 1103, 1104, 3, 409, 204, 0, 1104, 1105, 3, 405, 202, 0, 1105, 1106, 3, 439, 219, 0, 1106, 1107, 3, 417, 208, 0, 1107, 1108, 3, 443, 221, 0, 1108, 1109, 3, 409, 204, 0, 1109, 166, 1, 0, 0, 0, 1110, 1111, 3, 417, 208, 0, 1111, 1112, 3, 427, 213, 0, 1112, 1113, 3, 427, 213, 0, 1113, 1114, 3, 409, 204, 0, 1114, 1115, 3, 435, 217, 0, 1115, 168, 1, 0, 0, 0, 1116, 1117, 3, 417, 208, 0, 1117, 1118, 3, 427, 213, 0, 1118, 1119, 3, 437, 218, 0, 1119, 1120, 3, 409, 204, 0, 1120, 1121, 3, 435, 217, 0, 1121, 1122, 3, 439, 219, 0, 1122, 170, 1, 0, 0, 0, 1123, 1124, 3, 417, 208, 0, 1124, 1125, 3, 427, 213, 0, 1125, 1126, 3, 439, 219, 0, 1126, 1127, 3, 409, 204, 0, 1127, 1128, 3, 435, 217, 0, 1128, 1129, 3, 443, 221, 0, 1129, 1130, 3, 401, 200, 0, 1130, 1131, 3, 423, 211, 0, 1131, 172, 1, 0, 0, 0, 1132, 1133, 3, 417, 208, 0, 1133, 1134, 3, 427, 213, 0, 1134, 1135, 3, 439, 219, 0, 1135, 1136, 3, 429, 214, 0, 1136, 174, 1, 0, 0, 0, 1137, 1138, 3, 417, 208, 0, 1138, 1139, 3, 437, 218, 0, 1139, 176, 1, 0, 0, 0, 1140, 1141, 3, 417, 208, 0, 1141, 1142, 3, 437, 218, 0, 1142, 1143, 3, 523, 261, 0, 1143, 1144, 3, 429, 214, 0, 1144, 1145, 3, 403, 201, 0, 1145, 1146, 3, 419, 209, 0, 1146, 1147, 3, 409, 204, 0, 1147, 1148, 3, 405, 202, 0, 1148, 1149, 3, 439, 219, 0, 1149, 1150, 3, 523, 261, 0, 1150, 1151, 3, 417, 208, 0, 1151, 1152, 3, 407, 203, 0, 1152, 178, 1, 0, 0, 0, 1153, 1154, 3, 419, 209, 0, 1154, 1155, 3, 429, 214, 0, 1155, 1156, 3, 417, 208, 0, 1156, 1157, 3, 427, 213, 0, 1157, 180, 1, 0, 0, 0, 1158, 1159, 3, 421, 210, 0, 1159, 1160, 3, 409, 204, 0, 1160, 1161, 3, 449, 224, 0, 1161, 182, 1, 0, 0, 0, 1162, 1163, 3, 421, 210, 0, 1163, 1164, 3, 417, 208, 0, 1164, 1165, 3, 423, 211, 0, 1165, 1166, 3, 423, 211, 0, 1166, 184, 1, 0, 0, 0, 1167, 1168, 3, 423, 211, 0, 1168, 1169, 3, 401, 200, 0, 1169, 1170, 3, 437, 218, 0, 1170, 1171, 3, 439, 219, 0, 1171, 186, 1, 0, 0, 0, 1172, 1173, 3, 423, 211, 0, 1173, 1174, 3, 401, 200, 0, 1174, 1175, 3, 449, 224, 0, 1175, 1176, 3, 429, 214, 0, 1176, 1177, 3, 441, 220, 0, 1177, 1178, 3, 439, 219, 0, 1178, 188, 1, 0, 0, 0, 1179, 1180, 3, 423, 211, 0, 1180, 1181, 3, 409, 204, 0, 1181, 1182, 3, 401, 200, 0, 1182, 1183, 3, 407, 203, 0, 1183, 1184, 3, 417, 208, 0, 1184, 1185, 3, 427, 213, 0, 1185, 1186, 3, 413, 206, 0, 1186, 190, 1, 0, 0, 0, 1187, 1188, 3, 423, 211, 0, 1188, 1189, 3, 409, 204, 0, 1189, 1190, 3, 411, 205, 0, 1190, 1191, 3, 439, 219, 0, 1191, 192, 1, 0, 0, 0, 1192, 1193, 3, 423, 211, 0, 1193, 1194, 3, 417, 208, 0, 1194, 1195, 3, 411, 205, 0, 1195, 1196, 3, 409, 204, 0, 1196, 1197, 3, 439, 219, 0, 1197, 1198, 3, 417, 208, 0, 1198, 1199, 3, 425, 212, 0, 1199, 1200, 3, 409, 204, 0, 1200, 194, 1, 0, 0, 0, 1201, 1202, 3, 423, 211, 0, 1202, 1203, 3, 417, 208, 0, 1203, 1204, 3, 421, 210, 0, 1204, 1205, 3, 409, 204, 0, 1205, 196, 1, 0, 0, 0, 1206, 1207, 3, 423, 211, 0, 1207, 1208, 3, 417, 208, 0, 1208, 1209, 3, 425, 212, 0, 1209, 1210, 3, 417, 208, 0, 1210, 1211, 3, 439, 219, 0, 1211, 198, 1, 0, 0, 0, 1212, 1213, 3, 423, 211, 0, 1213, 1214, 3, 417, 208, 0, 1214, 1215, 3, 443, 221, 0, 1215, 1216, 3, 409, 204, 0, 1216, 200, 1, 0, 0, 0, 1217, 1218, 3, 423, 211, 0, 1218, 1219, 3, 429, 214, 0, 1219, 1220, 3, 405, 202, 0, 1220, 1221, 3, 401, 200, 0, 1221, 1222, 3, 423, 211, 0, 1222, 202, 1, 0, 0, 0, 1223, 1224, 3, 423, 211, 0, 1224, 1225, 3, 429, 214, 0, 1225, 1226, 3, 413, 206, 0, 1226, 1227, 3, 437, 218, 0, 1227, 204, 1, 0, 0, 0, 1228, 1229, 3, 425, 212, 0, 1229, 1230, 3, 401, 200, 0, 1230, 1231, 3, 439, 219, 0, 1231, 1232, 3, 409, 204, 0, 1232, 1233, 3, 435, 217, 0, 1233, 1234, 3, 417, 208, 0, 1234, 1235, 3, 401, 200, 0, 1235, 1236, 3, 423, 211, 0, 1236, 1237, 3, 417, 208, 0, 1237, 1238, 3, 451, 225, 0, 1238, 1239, 3, 409, 204, 0, 1239, 206, 1, 0, 0, 0, 1240, 1241, 3, 425, 212, 0, 1241, 1242, 3, 401, 200, 0, 1242, 1243, 3, 439, 219, 0, 1243, 1244, 3, 409, 204, 0, 1244, 1245, 3, 435, 217, 0, 1245, 1246, 3, 417, 208, 0, 1246, 1247, 3, 401, 200, 0, 1247, 1248, 3, 423, 211, 0, 1248, 1249, 3, 417, 208, 0, 1249, 1250, 3, 451, 225, 0, 1250, 1251, 3, 409, 204, 0, 1251, 1252, 3, 407, 203, 0, 1252, 208, 1, 0, 0, 0, 1253, 1254, 3, 425, 212, 0, 1254, 1255, 3, 401, 200, 0, 1255, 1256, 3, 447, 223, 0, 1256, 210, 1, 0, 0, 0, 1257, 1258, 3, 425, 212, 0, 1258, 1259, 3, 409, 204, 0, 1259, 1260, 3, 435, 217, 0, 1260, 1261, 3, 413, 206, 0, 1261, 1262, 3, 409, 204, 0, 1262, 1263, 3, 437, 218, 0, 1263, 212, 1, 0, 0, 0, 1264, 1265, 3, 425, 212, 0, 1265, 1266, 3, 417, 208, 0, 1266, 1267, 3, 427, 213, 0, 1267, 214, 1, 0, 0, 0, 1268, 1269, 3, 425, 212, 0, 1269, 1270, 3, 417, 208, 0, 1270, 1271, 3, 427, 213, 0, 1271, 1272, 3, 441, 220, 0, 1272, 1273, 3, 439, 219, 0, 1273, 1274, 3, 409, 204, 0, 1274, 216, 1, 0, 0, 0, 1275, 1276, 3, 425, 212, 0, 1276, 1277, 3, 429, 214, 0, 1277, 1278, 3, 407, 203, 0, 1278, 1279, 3, 417, 208, 0, 1279, 1280, 3, 411, 205, 0, 1280, 1281, 3, 449, 224, 0, 1281, 218, 1, 0, 0, 0, 1282, 1283, 3, 425, 212, 0, 1283, 1284, 3, 429, 214, 0, 1284, 1285, 3, 427, 213, 0, 1285, 1286, 3, 439, 219, 0, 1286, 1287, 3, 415, 207, 0, 1287, 220, 1, 0, 0, 0, 1288, 1289, 3, 425, 212, 0, 1289, 1290, 3, 429, 214, 0, 1290, 1291, 3, 443, 221, 0, 1291, 1292, 3, 409, 204, 0, 1292, 222, 1, 0, 0, 0, 1293, 1294, 3, 425, 212, 0, 1294, 1295, 3, 441, 220, 0, 1295, 1296, 3, 439, 219, 0, 1296, 1297, 3, 401, 200, 0, 1297, 1298, 3, 439, 219, 0, 1298, 1299, 3, 417, 208, 0, 1299, 1300, 3, 429, 214, 0, 1300, 1301, 3, 427, 213, 0, 1301, 224, 1, 0, 0, 0, 1302, 1303, 3, 427, 213, 0, 1303, 1304, 3, 401, 200, 0, 1304, 1305, 3, 427, 213, 0, 1305, 226, 1, 0, 0, 0, 1306, 1307, 3, 427, 213, 0, 1307, 1308, 3, 429, 214, 0, 1308, 228, 1, 0, 0, 0, 1309, 1310, 3, 427, 213, 0, 1310, 1311, 3, 429, 214, 0, 1311, 1312, 3, 439, 219, 0, 1312, 230, 1, 0, 0, 0, 1313, 1314, 3, 427, 213, 0, 1314, 1315, 3, 441, 220, 0, 1315, 1316, 3, 423, 211, 0, 1316, 1317, 3, 423, 211, 0, 1317, 232, 1, 0, 0, 0, 1318, 1319, 3, 427, 213, 0, 1319, 1320, 3, 441, 220, 0, 1320, 1321, 3, 423, 211, 0, 1321, 1322, 3, 423, 211, 0, 1322, 1323, 3, 437, 218, 0, 1323, 234, 1, 0, 0, 0, 1324, 1325, 3, 429, 214, 0, 1325, 1326, 3, 411, 205, 0, 1326, 1327, 3, 411, 205, 0, 1327, 1328, 3, 437, 218, 0, 1328, 1329, 3, 409, 204, 0, 1329, 1330, 3, 439, 219, 0, 1330, 236, 1, 0, 0, 0, 1331, 1332, 3, 429, 214, 0, 1332, 1333, 3, 427, 213, 0, 1333, 238, 1, 0, 0, 0, 1334, 1335, 3, 429, 214, 0, 1335, 1336, 3, 431, 215, 0, 1336, 1337, 3, 439, 219, 0, 1337, 1338, 3, 417, 208, 0, 1338, 1339, 3, 425, 212, 0, 1339, 1340, 3, 417, 208, 0, 1340, 1341, 3, 451, 225, 0, 1341, 1342, 3, 409, 204, 0, 1342, 240, 1, 0, 0, 0, 1343, 1344, 3, 429, 214, 0, 1344, 1345, 3, 435, 217, 0, 1345, 242, 1, 0, 0, 0, 1346, 1347, 3, 429, 214, 0, 1347, 1348, 3, 435, 217, 0, 1348, 1349, 3, 407, 203, 0, 1349, 1350, 3, 409, 204, 0, 1350, 1351, 3, 435, 217, 0, 1351, 244, 1, 0, 0, 0, 1352, 1353, 3, 429, 214, 0, 1353, 1354, 3, 441, 220, 0, 1354, 1355, 3, 439, 219, 0, 1355, 1356, 3, 409, 204, 0, 1356, 1357, 3, 435, 217, 0, 1357, 246, 1, 0, 0, 0, 1358, 1359, 3, 429, 214, 0, 1359, 1360, 3, 441, 220, 0, 1360, 1361, 3, 439, 219, 0, 1361, 1362, 3, 411, 205, 0, 1362, 1363, 3, 417, 208, 0, 1363, 1364, 3, 423, 211, 0, 1364, 1365, 3, 409, 204, 0, 1365, 248, 1, 0, 0, 0, 1366, 1367, 3, 429, 214, 0, 1367, 1368, 3, 443, 221, 0, 1368, 1369, 3, 409, 204, 0, 1369, 1370, 3, 435, 217, 0, 1370, 250, 1, 0, 0, 0, 1371, 1372, 3, 431, 215, 0, 1372, 1373, 3, 401, 200, 0, 1373, 1374, 3, 435, 217, 0, 1374, 1375, 3, 439, 219, 0, 1375, 1376, 3, 417, 208, 0, 1376, 1377, 3, 439, 219, 0, 1377, 1378, 3, 417, 208, 0, 1378, 1379, 3, 429, 214, 0, 1379, 1380, 3, 427, 213, 0, 1380, 252, 1, 0, 0, 0, 1381, 1382, 3, 431, 215, 0, 1382, 1383, 3, 429, 214, 0, 1383, 1384, 3, 431, 215, 0, 1384, 1385, 3, 441, 220, 0, 1385, 1386, 3, 423, 211, 0, 1386, 1387, 3, 401, 200, 0, 1387, 1388, 3, 439, 219, 0, 1388, 1389, 3, 409, 204, 0, 1389, 254, 1, 0, 0, 0, 1390, 1391, 3, 431, 215, 0, 1391, 1392, 3, 435, 217, 0, 1392, 1393, 3, 409, 204, 0, 1393, 1394, 3, 405, 202, 0, 1394, 1395, 3, 409, 204, 0, 1395, 1396, 3, 407, 203, 0, 1396, 1397, 3, 417, 208, 0, 1397, 1398, 3, 427, 213, 0, 1398, 1399, 3, 413, 206, 0, 1399, 256, 1, 0, 0, 0, 1400, 1401, 3, 431, 215, 0, 1401, 1402, 3, 435, 217, 0, 1402, 1403, 3, 409, 204, 0, 1403, 1404, 3, 445, 222, 0, 1404, 1405, 3, 415, 207, 0, 1405, 1406, 3, 409, 204, 0, 1406, 1407, 3, 435, 217, 0, 1407, 1408, 3, 409, 204, 0, 1408, 258, 1, 0, 0, 0, 1409, 1410, 3, 431, 215, 0, 1410, 1411, 3, 435, 217, 0, 1411, 1412, 3, 417, 208, 0, 1412, 1413, 3, 425, 212, 0, 1413, 1414, 3, 401, 200, 0, 1414, 1415, 3, 435, 217, 0, 1415, 1416, 3, 449, 224, 0, 1416, 260, 1, 0, 0, 0, 1417, 1418, 3, 431, 215, 0, 1418, 1419, 3, 435, 217, 0, 1419, 1420, 3, 429, 214, 0, 1420, 1421, 3, 419, 209, 0, 1421, 1422, 3, 409, 204, 0, 1422, 1423, 3, 405, 202, 0, 1423, 1424, 3, 439, 219, 0, 1424, 1425, 3, 417, 208, 0, 1425, 1426, 3, 429, 214, 0, 1426, 1427, 3, 427, 213, 0, 1427, 262, 1, 0, 0, 0, 1428, 1429, 3, 433, 216, 0, 1429, 1430, 3, 441, 220, 0, 1430, 1431, 3, 401, 200, 0, 1431, 1432, 3, 435, 217, 0, 1432, 1433, 3, 439, 219, 0, 1433, 1434, 3, 409, 204, 0, 1434, 1435, 3, 435, 217, 0, 1435, 264, 1, 0, 0, 0, 1436, 1437, 3, 435, 217, 0, 1437, 1438, 3, 401, 200, 0, 1438, 1439, 3, 427, 213, 0, 1439, 1440, 3, 413, 206, 0, 1440, 1441, 3, 409, 204, 0, 1441, 266, 1, 0, 0, 0, 1442, 1443, 3, 435, 217, 0, 1443, 1444, 3, 409, 204, 0, 1444, 1445, 3, 423, 211, 0, 1445, 1446, 3, 429, 214, 0, 1446, 1447, 3, 401, 200, 0, 1447, 1448, 3, 407, 203, 0, 1448, 268, 1, 0, 0, 0, 1449, 1450, 3, 435, 217, 0, 1450, 1451, 3, 409, 204, 0, 1451, 1452, 3, 425, 212, 0, 1452, 1453, 3, 429, 214, 0, 1453, 1454, 3, 443, 221, 0, 1454, 1455, 3, 409, 204, 0, 1455, 270, 1, 0, 0, 0, 1456, 1457, 3, 435, 217, 0, 1457, 1458, 3, 409, 204, 0, 1458, 1459, 3, 427, 213, 0, 1459, 1460, 3, 401, 200, 0, 1460, 1461, 3, 425, 212, 0, 1461, 1462, 3, 409, 204, 0, 1462, 272, 1, 0, 0, 0, 1463, 1464, 3, 435, 217, 0, 1464, 1465, 3, 409, 204, 0, 1465, 1466, 3, 431, 215, 0, 1466, 1467, 3, 423, 211, 0, 1467, 1468, 3, 401, 200, 0, 1468, 1469, 3, 405, 202, 0, 1469, 1470, 3, 409, 204, 0, 1470, 274, 1, 0, 0, 0, 1471, 1472, 3, 435, 217, 0, 1472, 1473, 3, 409, 204, 0, 1473, 1474, 3, 431, 215, 0, 1474, 1475, 3, 423, 211, 0, 1475, 1476, 3, 417, 208, 0, 1476, 1477, 3, 405, 202, 0, 1477, 1478, 3, 401, 200, 0, 1478, 276, 1, 0, 0, 0, 1479, 1480, 3, 435, 217, 0, 1480, 1481, 3, 409, 204, 0, 1481, 1482, 3, 431, 215, 0, 1482, 1483, 3, 423, 211, 0, 1483, 1484, 3, 417, 208, 0, 1484, 1485, 3, 405, 202, 0, 1485, 1486, 3, 401, 200, 0, 1486, 1487, 3, 439, 219, 0, 1487, 1488, 3, 409, 204, 0, 1488, 1489, 3, 407, 203, 0, 1489, 278, 1, 0, 0, 0, 1490, 1491, 3, 435, 217, 0, 1491, 1492, 3, 417, 208, 0, 1492, 1493, 3, 413, 206, 0, 1493, 1494, 3, 415, 207, 0, 1494, 1495, 3, 439, 219, 0, 1495, 280, 1, 0, 0, 0, 1496, 1497, 3, 435, 217, 0, 1497, 1498, 3, 429, 214, 0, 1498, 1499, 3, 423, 211, 0, 1499, 1500, 3, 423, 211, 0, 1500, 1501, 3, 441, 220, 0, 1501, 1502, 3, 431, 215, 0, 1502, 282, 1, 0, 0, 0, 1503, 1504, 3, 435, 217, 0, 1504, 1505, 3, 429, 214, 0, 1505, 1506, 3, 445, 222, 0, 1506, 284, 1, 0, 0, 0, 1507, 1508, 3, 435, 217, 0, 1508, 1509, 3, 429, 214, 0, 1509, 1510, 3, 445, 222, 0, 1510, 1511, 3, 437, 218, 0, 1511, 286, 1, 0, 0, 0, 1512, 1513, 3, 437, 218, 0, 1513, 1514, 3, 401, 200, 0, 1514, 1515, 3, 425, 212, 0, 1515, 1516, 3, 431, 215, 0, 1516, 1517, 3, 423, 211, 0, 1517, 1518, 3, 409, 204, 0, 1518, 288, 1, 0, 0, 0, 1519, 1520, 3, 437, 218, 0, 1520, 1521, 3, 409, 204, 0, 1521, 1522, 3, 405, 202, 0, 1522, 1523, 3, 429, 214, 0, 1523, 1524, 3, 427, 213, 0, 1524, 1525, 3, 407, 203, 0, 1525, 290, 1, 0, 0, 0, 1526, 1527, 3, 437, 218, 0, 1527, 1528, 3, 409, 204, 0, 1528, 1529, 3, 423, 211, 0, 1529, 1530, 3, 409, 204, 0, 1530, 1531, 3, 405, 202, 0, 1531, 1532, 3, 439, 219, 0, 1532, 292, 1, 0, 0, 0, 1533, 1534, 3, 437, 218, 0, 1534, 1535, 3, 409, 204, 0, 1535, 1536, 3, 425, 212, 0, 1536, 1537, 3, 417, 208, 0, 1537, 294, 1, 0, 0, 0, 1538, 1539, 3, 437, 218, 0, 1539, 1540, 3, 409, 204, 0, 1540, 1541, 3, 427, 213, 0, 1541, 1542, 3, 407, 203, 0, 1542, 1543, 3, 437, 218, 0, 1543, 296, 1, 0, 0, 0, 1544, 1545, 3, 437, 218, 0, 1545, 1546, 3, 409, 204, 0, 1546, 1547, 3, 439, 219, 0, 1547, 298, 1, 0, 0, 0, 1548, 1549, 3, 437, 218, 0, 1549, 1550, 3, 409, 204, 0, 1550, 1551, 3, 439, 219, 0, 1551, 1552, 3, 439, 219, 0, 1552, 1553, 3, 417, 208, 0, 1553, 1554, 3, 427, 213, 0, 1554, 1555, 3, 413, 206, 0, 1555, 1556, 3, 437, 218, 0, 1556, 300, 1, 0, 0, 0, 1557, 1558, 3, 437, 218, 0, 1558, 1559, 3, 415, 207, 0, 1559, 1560, 3, 429, 214, 0, 1560, 1561, 3, 445, 222, 0, 1561, 302, 1, 0, 0, 0, 1562, 1563, 3, 437, 218, 0, 1563, 1564, 3, 429, 214, 0, 1564, 1565, 3, 441, 220, 0, 1565, 1566, 3, 435, 217, 0, 1566, 1567, 3, 405, 202, 0, 1567, 1568, 3, 409, 204, 0, 1568, 304, 1, 0, 0, 0, 1569, 1570, 3, 437, 218, 0, 1570, 1571, 3, 439, 219, 0, 1571, 1572, 3, 401, 200, 0, 1572, 1573, 3, 435, 217, 0, 1573, 1574, 3, 439, 219, 0, 1574, 306, 1, 0, 0, 0, 1575, 1576, 3, 437, 218, 0, 1576, 1577, 3, 439, 219, 0, 1577, 1578, 3, 429, 214, 0, 1578, 1579, 3, 431, 215, 0, 1579, 308, 1, 0, 0, 0, 1580, 1581, 3, 437, 218, 0, 1581, 1582, 3, 441, 220, 0, 1582, 1583, 3, 403, 201, 0, 1583, 1584, 3, 437, 218, 0, 1584, 1585, 3, 439, 219, 0, 1585, 1586, 3, 435, 217, 0, 1586, 1587, 3, 417, 208, 0, 1587, 1588, 3, 427, 213, 0, 1588, 1589, 3, 413, 206, 0, 1589, 310, 1, 0, 0, 0, 1590, 1591, 3, 437, 218, 0, 1591, 1592, 3, 449, 224, 0, 1592, 1593, 3, 427, 213, 0, 1593, 1594, 3, 405, 202, 0, 1594, 312, 1, 0, 0, 0, 1595, 1596, 3, 437, 218, 0, 1596, 1597, 3, 449, 224, 0, 1597, 1598, 3, 427, 213, 0, 1598, 1599, 3, 439, 219, 0, 1599, 1600, 3, 401, 200, 0, 1600, 1601, 3, 447, 223, 0, 1601, 314, 1, 0, 0, 0, 1602, 1603, 3, 437, 218, 0, 1603, 1604, 3, 449, 224, 0, 1604, 1605, 3, 437, 218, 0, 1605, 1606, 3, 439, 219, 0, 1606, 1607, 3, 409, 204, 0, 1607, 1608, 3, 425, 212, 0, 1608, 316, 1, 0, 0, 0, 1609, 1610, 3, 439, 219, 0, 1610, 1611, 3, 401, 200, 0, 1611, 1612, 3, 403, 201, 0, 1612, 1613, 3, 423, 211, 0, 1613, 1614, 3, 409, 204, 0, 1614, 318, 1, 0, 0, 0, 1615, 1616, 3, 439, 219, 0, 1616, 1617, 3, 401, 200, 0, 1617, 1618, 3, 403, 201, 0, 1618, 1619, 3, 423, 211, 0, 1619, 1620, 3, 409, 204, 0, 1620, 1621, 3, 437, 218, 0, 1621, 320, 1, 0, 0, 0, 1622, 1623, 3, 439, 219, 0, 1623, 1624, 3, 409, 204, 0, 1624, 1625, 3, 425, 212, 0, 1625, 1626, 3, 431, 215, 0, 1626, 1627, 3, 429, 214, 0, 1627, 1628, 3, 435, 217, 0, 1628, 1629, 3, 401, 200, 0, 1629, 1630, 3, 435, 217, 0, 1630, 1631, 3, 449, 224, 0, 1631, 322, 1, 0, 0, 0, 1632, 1633, 3, 439, 219, 0, 1633, 1634, 3, 409, 204, 0, 1634, 1635, 3, 437, 218, 0, 1635, 1636, 3, 439, 219, 0, 1636, 324, 1, 0, 0, 0, 1637, 1638, 3, 439, 219, 0, 1638, 1639, 3, 415, 207, 0, 1639, 1640, 3, 409, 204, 0, 1640, 1641, 3, 427, 213, 0, 1641, 326, 1, 0, 0, 0, 1642, 1643, 3, 439, 219, 0, 1643, 1644, 3, 417, 208, 0, 1644, 1645, 3, 409, 204, 0, 1645, 1646, 3, 437, 218, 0, 1646, 328, 1, 0, 0, 0, 1647, 1648, 3, 439, 219, 0, 1648, 1649, 3, 417, 208, 0, 1649, 1650, 3, 425, 212, 0, 1650, 1651, 3, 409, 204, 0, 1651, 1652, 3, 429, 214, 0, 1652, 1653, 3, 441, 220, 0, 1653, 1654, 3, 439, 219, 0, 1654, 330, 1, 0, 0, 0, 1655, 1656, 3, 439, 219, 0, 1656, 1657, 3, 417, 208, 0, 1657, 1658, 3, 425, 212, 0, 1658, 1659, 3, 409, 204, 0, 1659, 1660, 3, 437, 218, 0, 1660, 1661, 3, 439, 219, 0, 1661, 1662, 3, 401, 200, 0, 1662, 1663, 3, 425, 212, 0, 1663, 1664, 3, 431, 215, 0, 1664, 332, 1, 0, 0, 0, 1665, 1666, 3, 439, 219, 0, 1666, 1667, 3, 429, 214, 0, 1667, 334, 1, 0, 0, 0, 1668, 1669, 3, 439, 219, 0, 1669, 1670, 3, 429, 214, 0, 1670, 1671, 3, 431, 215, 0, 1671, 336, 1, 0, 0, 0, 1672, 1673, 3, 439, 219, 0, 1673, 1674, 3, 429, 214, 0, 1674, 1675, 3, 439, 219, 0, 1675, 1676, 3, 401, 200, 0, 1676, 1677, 3, 423, 211, 0, 1677, 1678, 3, 437, 218, 0, 1678, 338, 1, 0, 0, 0, 1679, 1680, 3, 439, 219, 0, 1680, 1681, 3, 435, 217, 0, 1681, 1682, 3, 401, 200, 0, 1682, 1683, 3, 417, 208, 0, 1683, 1684, 3, 423, 211, 0, 1684, 1685, 3, 417, 208, 0, 1685, 1686, 3, 427, 213, 0, 1686, 1687, 3, 413, 206, 0, 1687, 340, 1, 0, 0, 0, 1688, 1689, 3, 439, 219, 0, 1689, 1690, 3, 435, 217, 0, 1690, 1691, 3, 417, 208, 0, 1691, 1692, 3, 425, 212, 0, 1692, 342, 1, 0, 0, 0, 1693, 1694, 3, 439, 219, 0, 1694, 1695, 3, 435, 217, 0, 1695, 1696, 3, 441, 220, 0, 1696, 1697, 3, 427, 213, 0, 1697, 1698, 3, 405, 202, 0, 1698, 1699, 3, 401, 200, 0, 1699, 1700, 3, 439, 219, 0, 1700, 1701, 3, 409, 204, 0, 1701, 344, 1, 0, 0, 0, 1702, 1703, 3, 439, 219, 0, 1703, 1704, 3, 439, 219, 0, 1704, 1705, 3, 423, 211, 0, 1705, 346, 1, 0, 0, 0, 1706, 1707, 3, 439, 219, 0, 1707, 1708, 3, 449, 224, 0, 1708, 1709, 3, 431, 215, 0, 1709, 1710, 3, 409, 204, 0, 1710, 348, 1, 0, 0, 0, 1711, 1712, 3, 441, 220, 0, 1712, 1713, 3, 427, 213, 0, 1713, 1714, 3, 403, 201, 0, 1714, 1715, 3, 429, 214, 0, 1715, 1716, 3, 441, 220, 0, 1716, 1717, 3, 427, 213, 0, 1717, 1718, 3, 407, 203, 0, 1718, 1719, 3, 409, 204, 0, 1719, 1720, 3, 407, 203, 0, 1720, 350, 1, 0, 0, 0, 1721, 1722, 3, 441, 220, 0, 1722, 1723, 3, 427, 213, 0, 1723, 1724, 3, 417, 208, 0, 1724, 1725, 3, 429, 214, 0, 1725, 1726, 3, 427, 213, 0, 1726, 352, 1, 0, 0, 0, 1727, 1728, 3, 441, 220, 0, 1728, 1729, 3, 431, 215, 0, 1729, 1730, 3, 407, 203, 0, 1730, 1731, 3, 401, 200, 0, 1731, 1732, 3, 439, 219, 0, 1732, 1733, 3, 409, 204, 0, 1733, 354, 1, 0, 0, 0, 1734, 1735, 3, 441, 220, 0, 1735, 1736, 3, 437, 218, 0, 1736, 1737, 3, 409, 204, 0, 1737, 356, 1, 0, 0, 0, 1738, 1739, 3, 441, 220, 0, 1739, 1740, 3, 437, 218, 0, 1740, 1741, 3, 417, 208, 0, 1741, 1742, 3, 427, 213, 0, 1742, 1743, 3, 413, 206, 0, 1743, 358, 1, 0, 0, 0, 1744, 1745, 3, 441, 220, 0, 1745, 1746, 3, 441, 220, 0, 1746, 1747, 3, 417, 208, 0, 1747, 1748, 3, 407, 203, 0, 1748, 360, 1, 0, 0, 0, 1749, 1750, 3, 443, 221, 0, 1750, 1751, 3, 401, 200, 0, 1751, 1752, 3, 423, 211, 0, 1752, 1753, 3, 441, 220, 0, 1753, 1754, 3, 409, 204, 0, 1754, 1755, 3, 437, 218, 0, 1755, 362, 1, 0, 0, 0, 1756, 1757, 3, 443, 221, 0, 1757, 1758, 3, 417, 208, 0, 1758, 1759, 3, 409, 204, 0, 1759, 1760, 3, 445, 222, 0, 1760, 364, 1, 0, 0, 0, 1761, 1762, 3, 443, 221, 0, 1762, 1763, 3, 429, 214, 0, 1763, 1764, 3, 423, 211, 0, 1764, 1765, 3, 441, 220, 0, 1765, 1766, 3, 425, 212, 0, 1766, 1767, 3, 409, 204, 0, 1767, 366, 1, 0, 0, 0, 1768, 1769, 3, 445, 222, 0, 1769, 1770, 3, 401, 200, 0, 1770, 1771, 3, 439, 219, 0, 1771, 1772, 3, 405, 202, 0, 1772, 1773, 3, 415, 207, 0, 1773, 368, 1, 0, 0, 0, 1774, 1775, 3, 445, 222, 0, 1775, 1776, 3, 409, 204, 0, 1776, 1777, 3, 409, 204, 0, 1777, 1778, 3, 421, 210, 0, 1778, 370, 1, 0, 0, 0, 1779, 1780, 3, 445, 222, 0, 1780, 1781, 3, 415, 207, 0, 1781, 1782, 3, 409, 204, 0, 1782, 1783, 3, 427, 213, 0, 1783, 372, 1, 0, 0, 0, 1784, 1785, 3, 445, 222, 0, 1785, 1786, 3, 415, 207, 0, 1786, 1787, 3, 409, 204, 0, 1787, 1788, 3, 435, 217, 0, 1788, 1789, 3, 409, 204, 0, 1789, 374, 1, 0, 0, 0, 1790, 1791, 3, 445, 222, 0, 1791, 1792, 3, 417, 208, 0, 1792, 1793, 3, 427, 213, 0, 1793, 1794, 3, 407, 203, 0, 1794, 1795, 3, 429, 214, 0, 1795, 1796, 3, 445, 222, 0, 1796, 376, 1, 0, 0, 0, 1797, 1798, 3, 445, 222, 0, 1798, 1799, 3, 417, 208, 0, 1799, 1800, 3, 439, 219, 0, 1800, 1801, 3, 415, 207, 0, 1801, 378, 1, 0, 0, 0, 1802, 1803, 3, 449, 224, 0, 1803, 1804, 3, 409, 204, 0, 1804, 1805, 3, 401, 200, 0, 1805, 1806, 3, 435, 217, 0, 1806, 1813, 1, 0, 0, 0, 1807, 1808, 3, 449, 224, 0, 1808, 1809, 3, 449, 224, 0, 1809, 1810, 3, 449, 224, 0, 1810, 1811, 3, 449, 224, 0, 1811, 1813, 1, 0, 0, 0, 1812, 1802, 1, 0, 0, 0, 1812, 1807, 1, 0, 0, 0, 1813, 380, 1, 0, 0, 0, 1814, 1815, 5, 102, 0, 0, 1815, 1816, 5, 97, 0, 0, 1816, 1817, 5, 108, 0, 0, 1817, 1818, 5, 115, 0, 0, 1818, 1819, 5, 101, 0, 0, 1819, 382, 1, 0, 0, 0, 1820, 1821, 5, 116, 0, 0, 1821, 1822, 5, 114, 0, 0, 1822, 1823, 5, 117, 0, 0, 1823, 1824, 5, 101, 0, 0, 1824, 384, 1, 0, 0, 0, 1825, 1826, 3, 467, 233, 0, 1826, 1827, 3, 403, 201, 0, 1827, 1856, 1, 0, 0, 0, 1828, 1829, 3, 467, 233, 0, 1829, 1830, 3, 411, 205, 0, 1830, 1856, 1, 0, 0, 0, 1831, 1832, 3, 467, 233, 0, 1832, 1833, 3, 435, 217, 0, 1833, 1856, 1, 0, 0, 0, 1834, 1835, 3, 467, 233, 0, 1835, 1836, 3, 427, 213, 0, 1836, 1856, 1, 0, 0, 0, 1837, 1838, 3, 467, 233, 0, 1838, 1839, 3, 439, 219, 0, 1839, 1856, 1, 0, 0, 0, 1840, 1841, 3, 467, 233, 0, 1841, 1842, 5, 48, 0, 0, 1842, 1856, 1, 0, 0, 0, 1843, 1844, 3, 467, 233, 0, 1844, 1845, 3, 401, 200, 0, 1845, 1856, 1, 0, 0, 0, 1846, 1847, 3, 467, 233, 0, 1847, 1848, 3, 443, 221, 0, 1848, 1856, 1, 0, 0, 0, 1849, 1850, 3, 467, 233, 0, 1850, 1851, 3, 467, 233, 0, 1851, 1856, 1, 0, 0, 0, 1852, 1853, 3, 467, 233, 0, 1853, 1854, 3, 511, 255, 0, 1854, 1856, 1, 0, 0, 0, 1855, 1825, 1, 0, 0, 0, 1855, 1828, 1, 0, 0, 0, 1855, 1831, 1, 0, 0, 0, 1855, 1834, 1, 0, 0, 0, 1855, 1837, 1, 0, 0, 0, 1855, 1840, 1, 0, 0, 0, 1855, 1843, 1, 0, 0, 0, 1855, 1846, 1, 0, 0, 0, 1855, 1849, 1, 0, 0, 0, 1855, 1852, 1, 0, 0, 0, 1856, 386, 1, 0, 0, 0, 1857, 1861, 3, 453, 226, 0, 1858, 1861, 3, 523, 261, 0, 1859, 1861, 3, 477, 238, 0, 1860, 1857, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1859, 1, 0, 0, 0, 1861, 1868, 1, 0, 0, 0, 1862, 1867, 3, 453, 226, 0, 1863, 1867, 3, 523, 261, 0, 1864, 1867, 3, 457, 228, 0, 1865, 1867, 3, 477, 238, 0, 1866, 1862, 1, 0, 0, 0, 1866, 1863, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1866, 1865, 1, 0, 0, 0, 1867, 1870, 1, 0, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 1898, 1, 0, 0, 0, 1870, 1868, 1, 0, 0, 0, 1871, 1879, 3, 465, 232, 0, 1872, 1878, 8, 0, 0, 0, 1873, 1878, 3, 385, 192, 0, 1874, 1875, 3, 465, 232, 0, 1875, 1876, 3, 465, 232, 0, 1876, 1878, 1, 0, 0, 0, 1877, 1872, 1, 0, 0, 0, 1877, 1873, 1, 0, 0, 0, 1877, 1874, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1882, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1883, 3, 465, 232, 0, 1883, 1898, 1, 0, 0, 0, 1884, 1892, 3, 509, 254, 0, 1885, 1891, 8, 1, 0, 0, 1886, 1891, 3, 385, 192, 0, 1887, 1888, 3, 509, 254, 0, 1888, 1889, 3, 509, 254, 0, 1889, 1891, 1, 0, 0, 0, 1890, 1885, 1, 0, 0, 0, 1890, 1886, 1, 0, 0, 0, 1890, 1887, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1895, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1896, 3, 509, 254, 0, 1896, 1898, 1, 0, 0, 0, 1897, 1860, 1, 0, 0, 0, 1897, 1871, 1, 0, 0, 0, 1897, 1884, 1, 0, 0, 0, 1898, 388, 1, 0, 0, 0, 1899, 1900, 3, 395, 197, 0, 1900, 1904, 3, 479, 239, 0, 1901, 1903, 3, 459, 229, 0, 1902, 1901, 1, 0, 0, 0, 1903, 1906, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1909, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1910, 3, 431, 215, 0, 1908, 1910, 3, 409, 204, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1908, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1914, 3, 505, 252, 0, 1912, 1914, 3, 475, 237, 0, 1913, 1911, 1, 0, 0, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1916, 1, 0, 0, 0, 1915, 1917, 3, 457, 228, 0, 1916, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1916, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1976, 1, 0, 0, 0, 1920, 1923, 3, 395, 197, 0, 1921, 1924, 3, 431, 215, 0, 1922, 1924, 3, 409, 204, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1922, 1, 0, 0, 0, 1924, 1927, 1, 0, 0, 0, 1925, 1928, 3, 505, 252, 0, 1926, 1928, 3, 475, 237, 0, 1927, 1925, 1, 0, 0, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1931, 3, 457, 228, 0, 1930, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1976, 1, 0, 0, 0, 1934, 1935, 3, 393, 196, 0, 1935, 1939, 3, 479, 239, 0, 1936, 1938, 3, 457, 228, 0, 1937, 1936, 1, 0, 0, 0, 1938, 1941, 1, 0, 0, 0, 1939, 1937, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1942, 1, 0, 0, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 3, 409, 204, 0, 1943, 1946, 3, 505, 252, 0, 1944, 1946, 3, 475, 237, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1948, 1, 0, 0, 0, 1947, 1949, 3, 457, 228, 0, 1948, 1947, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1976, 1, 0, 0, 0, 1952, 1953, 3, 479, 239, 0, 1953, 1954, 3, 393, 196, 0, 1954, 1957, 3, 409, 204, 0, 1955, 1958, 3, 505, 252, 0, 1956, 1958, 3, 475, 237, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1960, 1, 0, 0, 0, 1959, 1961, 3, 457, 228, 0, 1960, 1959, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1976, 1, 0, 0, 0, 1964, 1965, 3, 393, 196, 0, 1965, 1968, 3, 409, 204, 0, 1966, 1969, 3, 505, 252, 0, 1967, 1969, 3, 475, 237, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1972, 3, 457, 228, 0, 1971, 1970, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1899, 1, 0, 0, 0, 1975, 1920, 1, 0, 0, 0, 1975, 1934, 1, 0, 0, 0, 1975, 1952, 1, 0, 0, 0, 1975, 1964, 1, 0, 0, 0, 1976, 390, 1, 0, 0, 0, 1977, 1979, 5, 48, 0, 0, 1978, 1980, 3, 455, 227, 0, 1979, 1978, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 392, 1, 0, 0, 0, 1983, 1985, 3, 457, 228, 0, 1984, 1983, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 394, 1, 0, 0, 0, 1988, 1989, 5, 48, 0, 0, 1989, 1991, 3, 447, 223, 0, 1990, 1992, 3, 459, 229, 0, 1991, 1990, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 396, 1, 0, 0, 0, 1995, 2003, 3, 511, 255, 0, 1996, 2002, 8, 2, 0, 0, 1997, 2002, 3, 385, 192, 0, 1998, 1999, 3, 511, 255, 0, 1999, 2000, 3, 511, 255, 0, 2000, 2002, 1, 0, 0, 0, 2001, 1996, 1, 0, 0, 0, 2001, 1997, 1, 0, 0, 0, 2001, 1998, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2006, 2007, 3, 511, 255, 0, 2007, 398, 1, 0, 0, 0, 2008, 2016, 3, 491, 245, 0, 2009, 2015, 8, 3, 0, 0, 2010, 2015, 3, 385, 192, 0, 2011, 2012, 3, 491, 245, 0, 2012, 2013, 3, 491, 245, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2009, 1, 0, 0, 0, 2014, 2010, 1, 0, 0, 0, 2014, 2011, 1, 0, 0, 0, 2015, 2018, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2019, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2020, 3, 513, 256, 0, 2020, 400, 1, 0, 0, 0, 2021, 2022, 7, 4, 0, 0, 2022, 402, 1, 0, 0, 0, 2023, 2024, 7, 5, 0, 0, 2024, 404, 1, 0, 0, 0, 2025, 2026, 7, 6, 0, 0, 2026, 406, 1, 0, 0, 0, 2027, 2028, 7, 7, 0, 0, 2028, 408, 1, 0, 0, 0, 2029, 2030, 7, 8, 0, 0, 2030, 410, 1, 0, 0, 0, 2031, 2032, 7, 9, 0, 0, 2032, 412, 1, 0, 0, 0, 2033, 2034, 7, 10, 0, 0, 2034, 414, 1, 0, 0, 0, 2035, 2036, 7, 11, 0, 0, 2036, 416, 1, 0, 0, 0, 2037, 2038, 7, 12, 0, 0, 2038, 418, 1, 0, 0, 0, 2039, 2040, 7, 13, 0, 0, 2040, 420, 1, 0, 0, 0, 2041, 2042, 7, 14, 0, 0, 2042, 422, 1, 0, 0, 0, 2043, 2044, 7, 15, 0, 0, 2044, 424, 1, 0, 0, 0, 2045, 2046, 7, 16, 0, 0, 2046, 426, 1, 0, 0, 0, 2047, 2048, 7, 17, 0, 0, 2048, 428, 1, 0, 0, 0, 2049, 2050, 7, 18, 0, 0, 2050, 430, 1, 0, 0, 0, 2051, 2052, 7, 19, 0, 0, 2052, 432, 1, 0, 0, 0, 2053, 2054, 7, 20, 0, 0, 2054, 434, 1, 0, 0, 0, 2055, 2056, 7, 21, 0, 0, 2056, 436, 1, 0, 0, 0, 2057, 2058, 7, 22, 0, 0, 2058, 438, 1, 0, 0, 0, 2059, 2060, 7, 23, 0, 0, 2060, 440, 1, 0, 0, 0, 2061, 2062, 7, 24, 0, 0, 2062, 442, 1, 0, 0, 0, 2063, 2064, 7, 25, 0, 0, 2064, 444, 1, 0, 0, 0, 2065, 2066, 7, 26, 0, 0, 2066, 446, 1, 0, 0, 0, 2067, 2068, 7, 27, 0, 0, 2068, 448, 1, 0, 0, 0, 2069, 2070, 7, 28, 0, 0, 2070, 450, 1, 0, 0, 0, 2071, 2072, 7, 29, 0, 0, 2072, 452, 1, 0, 0, 0, 2073, 2074, 7, 30, 0, 0, 2074, 454, 1, 0, 0, 0, 2075, 2076, 7, 31, 0, 0, 2076, 456, 1, 0, 0, 0, 2077, 2078, 7, 32, 0, 0, 2078, 458, 1, 0, 0, 0, 2079, 2080, 7, 33, 0, 0, 2080, 460, 1, 0, 0, 0, 2081, 2082, 5, 45, 0, 0, 2082, 2083, 5, 62, 0, 0, 2083, 462, 1, 0, 0, 0, 2084, 2085, 5, 42, 0, 0, 2085, 464, 1, 0, 0, 0, 2086, 2087, 5, 96, 0, 0, 2087, 466, 1, 0, 0, 0, 2088, 2089, 5, 92, 0, 0, 2089, 468, 1, 0, 0, 0, 2090, 2091, 5, 58, 0, 0, 2091, 470, 1, 0, 0, 0, 2092, 2093, 5, 44, 0, 0, 2093, 472, 1, 0, 0, 0, 2094, 2095, 5, 124, 0, 0, 2095, 2096, 5, 124, 0, 0, 2096, 474, 1, 0, 0, 0, 2097, 2098, 5, 45, 0, 0, 2098, 476, 1, 0, 0, 0, 2099, 2100, 5, 36, 0, 0, 2100, 478, 1, 0, 0, 0, 2101, 2102, 5, 46, 0, 0, 2102, 480, 1, 0, 0, 0, 2103, 2104, 5, 61, 0, 0, 2104, 2105, 5, 61, 0, 0, 2105, 482, 1, 0, 0, 0, 2106, 2107, 5, 61, 0, 0, 2107, 484, 1, 0, 0, 0, 2108, 2109, 5, 62, 0, 0, 2109, 2110, 5, 61, 0, 0, 2110, 486, 1, 0, 0, 0, 2111, 2112, 5, 62, 0, 0, 2112, 488, 1, 0, 0, 0, 2113, 2114, 5, 35, 0, 0, 2114, 490, 1, 0, 0, 0, 2115, 2116, 5, 123, 0, 0, 2116, 492, 1, 0, 0, 0, 2117, 2118, 5, 91, 0, 0, 2118, 494, 1, 0, 0, 0, 2119, 2120, 5, 60, 0, 0, 2120, 2121, 5, 61, 0, 0, 2121, 496, 1, 0, 0, 0, 2122, 2123, 5, 40, 0, 0, 2123, 498, 1, 0, 0, 0, 2124, 2125, 5, 60, 0, 0, 2125, 500, 1, 0, 0, 0, 2126, 2127, 5, 33, 0, 0, 2127, 2131, 5, 61, 0, 0, 2128, 2129, 5, 60, 0, 0, 2129, 2131, 5, 62, 0, 0, 2130, 2126, 1, 0, 0, 0, 2130, 2128, 1, 0, 0, 0, 2131, 502, 1, 0, 0, 0, 2132, 2133, 5, 37, 0, 0, 2133, 504, 1, 0, 0, 0, 2134, 2135, 5, 43, 0, 0, 2135, 506, 1, 0, 0, 0, 2136, 2137, 5, 63, 0, 0, 2137, 508, 1, 0, 0, 0, 2138, 2139, 5, 34, 0, 0, 2139, 510, 1, 0, 0, 0, 2140, 2141, 5, 39, 0, 0, 2141, 512, 1, 0, 0, 0, 2142, 2143, 5, 125, 0, 0, 2143, 514, 1, 0, 0, 0, 2144, 2145, 5, 93, 0, 0, 2145, 516, 1, 0, 0, 0, 2146, 2147, 5, 41, 0, 0, 2147, 518, 1, 0, 0, 0, 2148, 2149, 5, 59, 0, 0, 2149, 520, 1, 0, 0, 0, 2150, 2151, 5, 47, 0, 0, 2151, 522, 1, 0, 0, 0, 2152, 2153, 5, 95, 0, 0, 2153, 524, 1, 0, 0, 0, 2154, 2155, 5, 47, 0, 0, 2155, 2156, 5, 42, 0, 0, 2156, 2160, 1, 0, 0, 0, 2157, 2159, 9, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2164, 5, 42, 0, 0, 2164, 2165, 5, 47, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2167, 6, 262, 0, 0, 2167, 526, 1, 0, 0, 0, 2168, 2169, 5, 45, 0, 0, 2169, 2170, 5, 45, 0, 0, 2170, 2174, 1, 0, 0, 0, 2171, 2173, 8, 34, 0, 0, 2172, 2171, 1, 0, 0, 0, 2173, 2176, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2177, 2179, 7, 35, 0, 0, 2178, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2181, 6, 263, 0, 0, 2181, 528, 1, 0, 0, 0, 2182, 2183, 7, 36, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 6, 264, 1, 0, 2185, 530, 1, 0, 0, 0, 39, 0, 593, 1098, 1812, 1855, 1860, 1866, 1868, 1877, 1879, 1890, 1892, 1897, 1904, 1909, 1913, 1918, 1923, 1927, 1932, 1939, 1945, 1950, 1957, 1962, 1968, 1973, 1975, 1981, 1986, 1993, 2001, 2003, 2014, 2016, 2130, 2160, 2174, 2178, 2, 6, 0, 0, 0, 1, 0] \ No newline at end of file +[4, 0, 235, 2186, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 594, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1099, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 1813, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 1856, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 1861, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1867, 8, 193, 10, 193, 12, 193, 1870, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1878, 8, 193, 10, 193, 12, 193, 1881, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1891, 8, 193, 10, 193, 12, 193, 1894, 9, 193, 1, 193, 1, 193, 3, 193, 1898, 8, 193, 1, 194, 1, 194, 1, 194, 5, 194, 1903, 8, 194, 10, 194, 12, 194, 1906, 9, 194, 1, 194, 1, 194, 3, 194, 1910, 8, 194, 1, 194, 1, 194, 3, 194, 1914, 8, 194, 1, 194, 4, 194, 1917, 8, 194, 11, 194, 12, 194, 1918, 1, 194, 1, 194, 1, 194, 3, 194, 1924, 8, 194, 1, 194, 1, 194, 3, 194, 1928, 8, 194, 1, 194, 4, 194, 1931, 8, 194, 11, 194, 12, 194, 1932, 1, 194, 1, 194, 1, 194, 5, 194, 1938, 8, 194, 10, 194, 12, 194, 1941, 9, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1946, 8, 194, 1, 194, 4, 194, 1949, 8, 194, 11, 194, 12, 194, 1950, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1958, 8, 194, 1, 194, 4, 194, 1961, 8, 194, 11, 194, 12, 194, 1962, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1969, 8, 194, 1, 194, 4, 194, 1972, 8, 194, 11, 194, 12, 194, 1973, 3, 194, 1976, 8, 194, 1, 195, 1, 195, 4, 195, 1980, 8, 195, 11, 195, 12, 195, 1981, 1, 196, 4, 196, 1985, 8, 196, 11, 196, 12, 196, 1986, 1, 197, 1, 197, 1, 197, 4, 197, 1992, 8, 197, 11, 197, 12, 197, 1993, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2002, 8, 198, 10, 198, 12, 198, 2005, 9, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2015, 8, 199, 10, 199, 12, 199, 2018, 9, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 1, 223, 1, 223, 1, 224, 1, 224, 1, 225, 1, 225, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 246, 1, 246, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 2131, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 1, 253, 1, 253, 1, 254, 1, 254, 1, 255, 1, 255, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 2159, 8, 262, 10, 262, 12, 262, 2162, 9, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 2173, 8, 263, 10, 263, 12, 263, 2176, 9, 263, 1, 263, 3, 263, 2179, 8, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 2160, 0, 265, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 0, 451, 0, 453, 0, 455, 0, 457, 0, 459, 0, 461, 201, 463, 202, 465, 203, 467, 204, 469, 205, 471, 206, 473, 207, 475, 208, 477, 209, 479, 210, 481, 211, 483, 212, 485, 213, 487, 214, 489, 215, 491, 216, 493, 217, 495, 218, 497, 219, 499, 220, 501, 221, 503, 222, 505, 223, 507, 224, 509, 225, 511, 226, 513, 227, 515, 228, 517, 229, 519, 230, 521, 231, 523, 232, 525, 233, 527, 234, 529, 235, 1, 0, 37, 2, 0, 92, 92, 96, 96, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 2, 0, 92, 92, 125, 125, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 65, 90, 97, 122, 1, 0, 48, 55, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 2, 0, 10, 10, 13, 13, 2, 1, 10, 10, 13, 13, 2, 0, 9, 13, 32, 32, 2216, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 1, 531, 1, 0, 0, 0, 3, 535, 1, 0, 0, 0, 5, 541, 1, 0, 0, 0, 7, 547, 1, 0, 0, 0, 9, 551, 1, 0, 0, 0, 11, 557, 1, 0, 0, 0, 13, 561, 1, 0, 0, 0, 15, 566, 1, 0, 0, 0, 17, 570, 1, 0, 0, 0, 19, 576, 1, 0, 0, 0, 21, 593, 1, 0, 0, 0, 23, 595, 1, 0, 0, 0, 25, 600, 1, 0, 0, 0, 27, 604, 1, 0, 0, 0, 29, 610, 1, 0, 0, 0, 31, 617, 1, 0, 0, 0, 33, 625, 1, 0, 0, 0, 35, 630, 1, 0, 0, 0, 37, 633, 1, 0, 0, 0, 39, 638, 1, 0, 0, 0, 41, 643, 1, 0, 0, 0, 43, 649, 1, 0, 0, 0, 45, 655, 1, 0, 0, 0, 47, 663, 1, 0, 0, 0, 49, 669, 1, 0, 0, 0, 51, 676, 1, 0, 0, 0, 53, 684, 1, 0, 0, 0, 55, 691, 1, 0, 0, 0, 57, 699, 1, 0, 0, 0, 59, 710, 1, 0, 0, 0, 61, 717, 1, 0, 0, 0, 63, 723, 1, 0, 0, 0, 65, 728, 1, 0, 0, 0, 67, 736, 1, 0, 0, 0, 69, 745, 1, 0, 0, 0, 71, 755, 1, 0, 0, 0, 73, 760, 1, 0, 0, 0, 75, 764, 1, 0, 0, 0, 77, 776, 1, 0, 0, 0, 79, 784, 1, 0, 0, 0, 81, 790, 1, 0, 0, 0, 83, 797, 1, 0, 0, 0, 85, 802, 1, 0, 0, 0, 87, 813, 1, 0, 0, 0, 89, 822, 1, 0, 0, 0, 91, 829, 1, 0, 0, 0, 93, 842, 1, 0, 0, 0, 95, 853, 1, 0, 0, 0, 97, 858, 1, 0, 0, 0, 99, 867, 1, 0, 0, 0, 101, 879, 1, 0, 0, 0, 103, 884, 1, 0, 0, 0, 105, 889, 1, 0, 0, 0, 107, 893, 1, 0, 0, 0, 109, 900, 1, 0, 0, 0, 111, 907, 1, 0, 0, 0, 113, 914, 1, 0, 0, 0, 115, 922, 1, 0, 0, 0, 117, 933, 1, 0, 0, 0, 119, 941, 1, 0, 0, 0, 121, 949, 1, 0, 0, 0, 123, 955, 1, 0, 0, 0, 125, 961, 1, 0, 0, 0, 127, 967, 1, 0, 0, 0, 129, 977, 1, 0, 0, 0, 131, 981, 1, 0, 0, 0, 133, 988, 1, 0, 0, 0, 135, 995, 1, 0, 0, 0, 137, 1000, 1, 0, 0, 0, 139, 1005, 1, 0, 0, 0, 141, 1014, 1, 0, 0, 0, 143, 1021, 1, 0, 0, 0, 145, 1033, 1, 0, 0, 0, 147, 1039, 1, 0, 0, 0, 149, 1046, 1, 0, 0, 0, 151, 1059, 1, 0, 0, 0, 153, 1064, 1, 0, 0, 0, 155, 1067, 1, 0, 0, 0, 157, 1070, 1, 0, 0, 0, 159, 1076, 1, 0, 0, 0, 161, 1079, 1, 0, 0, 0, 163, 1098, 1, 0, 0, 0, 165, 1100, 1, 0, 0, 0, 167, 1110, 1, 0, 0, 0, 169, 1116, 1, 0, 0, 0, 171, 1123, 1, 0, 0, 0, 173, 1132, 1, 0, 0, 0, 175, 1137, 1, 0, 0, 0, 177, 1140, 1, 0, 0, 0, 179, 1153, 1, 0, 0, 0, 181, 1158, 1, 0, 0, 0, 183, 1162, 1, 0, 0, 0, 185, 1167, 1, 0, 0, 0, 187, 1172, 1, 0, 0, 0, 189, 1179, 1, 0, 0, 0, 191, 1187, 1, 0, 0, 0, 193, 1192, 1, 0, 0, 0, 195, 1201, 1, 0, 0, 0, 197, 1206, 1, 0, 0, 0, 199, 1212, 1, 0, 0, 0, 201, 1217, 1, 0, 0, 0, 203, 1223, 1, 0, 0, 0, 205, 1228, 1, 0, 0, 0, 207, 1240, 1, 0, 0, 0, 209, 1253, 1, 0, 0, 0, 211, 1257, 1, 0, 0, 0, 213, 1264, 1, 0, 0, 0, 215, 1268, 1, 0, 0, 0, 217, 1275, 1, 0, 0, 0, 219, 1282, 1, 0, 0, 0, 221, 1288, 1, 0, 0, 0, 223, 1293, 1, 0, 0, 0, 225, 1302, 1, 0, 0, 0, 227, 1306, 1, 0, 0, 0, 229, 1309, 1, 0, 0, 0, 231, 1313, 1, 0, 0, 0, 233, 1318, 1, 0, 0, 0, 235, 1324, 1, 0, 0, 0, 237, 1331, 1, 0, 0, 0, 239, 1334, 1, 0, 0, 0, 241, 1343, 1, 0, 0, 0, 243, 1346, 1, 0, 0, 0, 245, 1352, 1, 0, 0, 0, 247, 1358, 1, 0, 0, 0, 249, 1366, 1, 0, 0, 0, 251, 1371, 1, 0, 0, 0, 253, 1381, 1, 0, 0, 0, 255, 1390, 1, 0, 0, 0, 257, 1400, 1, 0, 0, 0, 259, 1409, 1, 0, 0, 0, 261, 1417, 1, 0, 0, 0, 263, 1428, 1, 0, 0, 0, 265, 1436, 1, 0, 0, 0, 267, 1442, 1, 0, 0, 0, 269, 1449, 1, 0, 0, 0, 271, 1456, 1, 0, 0, 0, 273, 1463, 1, 0, 0, 0, 275, 1471, 1, 0, 0, 0, 277, 1479, 1, 0, 0, 0, 279, 1490, 1, 0, 0, 0, 281, 1496, 1, 0, 0, 0, 283, 1503, 1, 0, 0, 0, 285, 1507, 1, 0, 0, 0, 287, 1512, 1, 0, 0, 0, 289, 1519, 1, 0, 0, 0, 291, 1526, 1, 0, 0, 0, 293, 1533, 1, 0, 0, 0, 295, 1538, 1, 0, 0, 0, 297, 1544, 1, 0, 0, 0, 299, 1548, 1, 0, 0, 0, 301, 1557, 1, 0, 0, 0, 303, 1562, 1, 0, 0, 0, 305, 1569, 1, 0, 0, 0, 307, 1575, 1, 0, 0, 0, 309, 1580, 1, 0, 0, 0, 311, 1590, 1, 0, 0, 0, 313, 1595, 1, 0, 0, 0, 315, 1602, 1, 0, 0, 0, 317, 1609, 1, 0, 0, 0, 319, 1615, 1, 0, 0, 0, 321, 1622, 1, 0, 0, 0, 323, 1632, 1, 0, 0, 0, 325, 1637, 1, 0, 0, 0, 327, 1642, 1, 0, 0, 0, 329, 1647, 1, 0, 0, 0, 331, 1655, 1, 0, 0, 0, 333, 1665, 1, 0, 0, 0, 335, 1668, 1, 0, 0, 0, 337, 1672, 1, 0, 0, 0, 339, 1679, 1, 0, 0, 0, 341, 1688, 1, 0, 0, 0, 343, 1693, 1, 0, 0, 0, 345, 1702, 1, 0, 0, 0, 347, 1706, 1, 0, 0, 0, 349, 1711, 1, 0, 0, 0, 351, 1721, 1, 0, 0, 0, 353, 1727, 1, 0, 0, 0, 355, 1734, 1, 0, 0, 0, 357, 1738, 1, 0, 0, 0, 359, 1744, 1, 0, 0, 0, 361, 1749, 1, 0, 0, 0, 363, 1756, 1, 0, 0, 0, 365, 1761, 1, 0, 0, 0, 367, 1768, 1, 0, 0, 0, 369, 1774, 1, 0, 0, 0, 371, 1779, 1, 0, 0, 0, 373, 1784, 1, 0, 0, 0, 375, 1790, 1, 0, 0, 0, 377, 1797, 1, 0, 0, 0, 379, 1812, 1, 0, 0, 0, 381, 1814, 1, 0, 0, 0, 383, 1820, 1, 0, 0, 0, 385, 1855, 1, 0, 0, 0, 387, 1897, 1, 0, 0, 0, 389, 1975, 1, 0, 0, 0, 391, 1977, 1, 0, 0, 0, 393, 1984, 1, 0, 0, 0, 395, 1988, 1, 0, 0, 0, 397, 1995, 1, 0, 0, 0, 399, 2008, 1, 0, 0, 0, 401, 2021, 1, 0, 0, 0, 403, 2023, 1, 0, 0, 0, 405, 2025, 1, 0, 0, 0, 407, 2027, 1, 0, 0, 0, 409, 2029, 1, 0, 0, 0, 411, 2031, 1, 0, 0, 0, 413, 2033, 1, 0, 0, 0, 415, 2035, 1, 0, 0, 0, 417, 2037, 1, 0, 0, 0, 419, 2039, 1, 0, 0, 0, 421, 2041, 1, 0, 0, 0, 423, 2043, 1, 0, 0, 0, 425, 2045, 1, 0, 0, 0, 427, 2047, 1, 0, 0, 0, 429, 2049, 1, 0, 0, 0, 431, 2051, 1, 0, 0, 0, 433, 2053, 1, 0, 0, 0, 435, 2055, 1, 0, 0, 0, 437, 2057, 1, 0, 0, 0, 439, 2059, 1, 0, 0, 0, 441, 2061, 1, 0, 0, 0, 443, 2063, 1, 0, 0, 0, 445, 2065, 1, 0, 0, 0, 447, 2067, 1, 0, 0, 0, 449, 2069, 1, 0, 0, 0, 451, 2071, 1, 0, 0, 0, 453, 2073, 1, 0, 0, 0, 455, 2075, 1, 0, 0, 0, 457, 2077, 1, 0, 0, 0, 459, 2079, 1, 0, 0, 0, 461, 2081, 1, 0, 0, 0, 463, 2084, 1, 0, 0, 0, 465, 2086, 1, 0, 0, 0, 467, 2088, 1, 0, 0, 0, 469, 2090, 1, 0, 0, 0, 471, 2092, 1, 0, 0, 0, 473, 2094, 1, 0, 0, 0, 475, 2097, 1, 0, 0, 0, 477, 2099, 1, 0, 0, 0, 479, 2101, 1, 0, 0, 0, 481, 2103, 1, 0, 0, 0, 483, 2106, 1, 0, 0, 0, 485, 2108, 1, 0, 0, 0, 487, 2111, 1, 0, 0, 0, 489, 2113, 1, 0, 0, 0, 491, 2115, 1, 0, 0, 0, 493, 2117, 1, 0, 0, 0, 495, 2119, 1, 0, 0, 0, 497, 2121, 1, 0, 0, 0, 499, 2124, 1, 0, 0, 0, 501, 2130, 1, 0, 0, 0, 503, 2132, 1, 0, 0, 0, 505, 2134, 1, 0, 0, 0, 507, 2136, 1, 0, 0, 0, 509, 2138, 1, 0, 0, 0, 511, 2140, 1, 0, 0, 0, 513, 2142, 1, 0, 0, 0, 515, 2144, 1, 0, 0, 0, 517, 2146, 1, 0, 0, 0, 519, 2148, 1, 0, 0, 0, 521, 2150, 1, 0, 0, 0, 523, 2152, 1, 0, 0, 0, 525, 2154, 1, 0, 0, 0, 527, 2168, 1, 0, 0, 0, 529, 2182, 1, 0, 0, 0, 531, 532, 3, 401, 200, 0, 532, 533, 3, 407, 203, 0, 533, 534, 3, 407, 203, 0, 534, 2, 1, 0, 0, 0, 535, 536, 3, 401, 200, 0, 536, 537, 3, 411, 205, 0, 537, 538, 3, 439, 219, 0, 538, 539, 3, 409, 204, 0, 539, 540, 3, 435, 217, 0, 540, 4, 1, 0, 0, 0, 541, 542, 3, 401, 200, 0, 542, 543, 3, 423, 211, 0, 543, 544, 3, 417, 208, 0, 544, 545, 3, 401, 200, 0, 545, 546, 3, 437, 218, 0, 546, 6, 1, 0, 0, 0, 547, 548, 3, 401, 200, 0, 548, 549, 3, 423, 211, 0, 549, 550, 3, 423, 211, 0, 550, 8, 1, 0, 0, 0, 551, 552, 3, 401, 200, 0, 552, 553, 3, 423, 211, 0, 553, 554, 3, 439, 219, 0, 554, 555, 3, 409, 204, 0, 555, 556, 3, 435, 217, 0, 556, 10, 1, 0, 0, 0, 557, 558, 3, 401, 200, 0, 558, 559, 3, 427, 213, 0, 559, 560, 3, 407, 203, 0, 560, 12, 1, 0, 0, 0, 561, 562, 3, 401, 200, 0, 562, 563, 3, 427, 213, 0, 563, 564, 3, 439, 219, 0, 564, 565, 3, 417, 208, 0, 565, 14, 1, 0, 0, 0, 566, 567, 3, 401, 200, 0, 567, 568, 3, 427, 213, 0, 568, 569, 3, 449, 224, 0, 569, 16, 1, 0, 0, 0, 570, 571, 3, 401, 200, 0, 571, 572, 3, 435, 217, 0, 572, 573, 3, 435, 217, 0, 573, 574, 3, 401, 200, 0, 574, 575, 3, 449, 224, 0, 575, 18, 1, 0, 0, 0, 576, 577, 3, 401, 200, 0, 577, 578, 3, 437, 218, 0, 578, 20, 1, 0, 0, 0, 579, 580, 3, 401, 200, 0, 580, 581, 3, 437, 218, 0, 581, 582, 3, 405, 202, 0, 582, 594, 1, 0, 0, 0, 583, 584, 3, 401, 200, 0, 584, 585, 3, 437, 218, 0, 585, 586, 3, 405, 202, 0, 586, 587, 3, 409, 204, 0, 587, 588, 3, 427, 213, 0, 588, 589, 3, 407, 203, 0, 589, 590, 3, 417, 208, 0, 590, 591, 3, 427, 213, 0, 591, 592, 3, 413, 206, 0, 592, 594, 1, 0, 0, 0, 593, 579, 1, 0, 0, 0, 593, 583, 1, 0, 0, 0, 594, 22, 1, 0, 0, 0, 595, 596, 3, 401, 200, 0, 596, 597, 3, 437, 218, 0, 597, 598, 3, 429, 214, 0, 598, 599, 3, 411, 205, 0, 599, 24, 1, 0, 0, 0, 600, 601, 3, 401, 200, 0, 601, 602, 3, 437, 218, 0, 602, 603, 3, 439, 219, 0, 603, 26, 1, 0, 0, 0, 604, 605, 3, 401, 200, 0, 605, 606, 3, 437, 218, 0, 606, 607, 3, 449, 224, 0, 607, 608, 3, 427, 213, 0, 608, 609, 3, 405, 202, 0, 609, 28, 1, 0, 0, 0, 610, 611, 3, 401, 200, 0, 611, 612, 3, 439, 219, 0, 612, 613, 3, 439, 219, 0, 613, 614, 3, 401, 200, 0, 614, 615, 3, 405, 202, 0, 615, 616, 3, 415, 207, 0, 616, 30, 1, 0, 0, 0, 617, 618, 3, 403, 201, 0, 618, 619, 3, 409, 204, 0, 619, 620, 3, 439, 219, 0, 620, 621, 3, 445, 222, 0, 621, 622, 3, 409, 204, 0, 622, 623, 3, 409, 204, 0, 623, 624, 3, 427, 213, 0, 624, 32, 1, 0, 0, 0, 625, 626, 3, 403, 201, 0, 626, 627, 3, 429, 214, 0, 627, 628, 3, 439, 219, 0, 628, 629, 3, 415, 207, 0, 629, 34, 1, 0, 0, 0, 630, 631, 3, 403, 201, 0, 631, 632, 3, 449, 224, 0, 632, 36, 1, 0, 0, 0, 633, 634, 3, 405, 202, 0, 634, 635, 3, 401, 200, 0, 635, 636, 3, 437, 218, 0, 636, 637, 3, 409, 204, 0, 637, 38, 1, 0, 0, 0, 638, 639, 3, 405, 202, 0, 639, 640, 3, 401, 200, 0, 640, 641, 3, 437, 218, 0, 641, 642, 3, 439, 219, 0, 642, 40, 1, 0, 0, 0, 643, 644, 3, 405, 202, 0, 644, 645, 3, 415, 207, 0, 645, 646, 3, 409, 204, 0, 646, 647, 3, 405, 202, 0, 647, 648, 3, 421, 210, 0, 648, 42, 1, 0, 0, 0, 649, 650, 3, 405, 202, 0, 650, 651, 3, 423, 211, 0, 651, 652, 3, 409, 204, 0, 652, 653, 3, 401, 200, 0, 653, 654, 3, 435, 217, 0, 654, 44, 1, 0, 0, 0, 655, 656, 3, 405, 202, 0, 656, 657, 3, 423, 211, 0, 657, 658, 3, 441, 220, 0, 658, 659, 3, 437, 218, 0, 659, 660, 3, 439, 219, 0, 660, 661, 3, 409, 204, 0, 661, 662, 3, 435, 217, 0, 662, 46, 1, 0, 0, 0, 663, 664, 3, 405, 202, 0, 664, 665, 3, 429, 214, 0, 665, 666, 3, 407, 203, 0, 666, 667, 3, 409, 204, 0, 667, 668, 3, 405, 202, 0, 668, 48, 1, 0, 0, 0, 669, 670, 3, 405, 202, 0, 670, 671, 3, 429, 214, 0, 671, 672, 3, 415, 207, 0, 672, 673, 3, 429, 214, 0, 673, 674, 3, 435, 217, 0, 674, 675, 3, 439, 219, 0, 675, 50, 1, 0, 0, 0, 676, 677, 3, 405, 202, 0, 677, 678, 3, 429, 214, 0, 678, 679, 3, 423, 211, 0, 679, 680, 3, 423, 211, 0, 680, 681, 3, 401, 200, 0, 681, 682, 3, 439, 219, 0, 682, 683, 3, 409, 204, 0, 683, 52, 1, 0, 0, 0, 684, 685, 3, 405, 202, 0, 685, 686, 3, 429, 214, 0, 686, 687, 3, 423, 211, 0, 687, 688, 3, 441, 220, 0, 688, 689, 3, 425, 212, 0, 689, 690, 3, 427, 213, 0, 690, 54, 1, 0, 0, 0, 691, 692, 3, 405, 202, 0, 692, 693, 3, 429, 214, 0, 693, 694, 3, 425, 212, 0, 694, 695, 3, 425, 212, 0, 695, 696, 3, 409, 204, 0, 696, 697, 3, 427, 213, 0, 697, 698, 3, 439, 219, 0, 698, 56, 1, 0, 0, 0, 699, 700, 3, 405, 202, 0, 700, 701, 3, 429, 214, 0, 701, 702, 3, 427, 213, 0, 702, 703, 3, 437, 218, 0, 703, 704, 3, 439, 219, 0, 704, 705, 3, 435, 217, 0, 705, 706, 3, 401, 200, 0, 706, 707, 3, 417, 208, 0, 707, 708, 3, 427, 213, 0, 708, 709, 3, 439, 219, 0, 709, 58, 1, 0, 0, 0, 710, 711, 3, 405, 202, 0, 711, 712, 3, 435, 217, 0, 712, 713, 3, 409, 204, 0, 713, 714, 3, 401, 200, 0, 714, 715, 3, 439, 219, 0, 715, 716, 3, 409, 204, 0, 716, 60, 1, 0, 0, 0, 717, 718, 3, 405, 202, 0, 718, 719, 3, 435, 217, 0, 719, 720, 3, 429, 214, 0, 720, 721, 3, 437, 218, 0, 721, 722, 3, 437, 218, 0, 722, 62, 1, 0, 0, 0, 723, 724, 3, 405, 202, 0, 724, 725, 3, 441, 220, 0, 725, 726, 3, 403, 201, 0, 726, 727, 3, 409, 204, 0, 727, 64, 1, 0, 0, 0, 728, 729, 3, 405, 202, 0, 729, 730, 3, 441, 220, 0, 730, 731, 3, 435, 217, 0, 731, 732, 3, 435, 217, 0, 732, 733, 3, 409, 204, 0, 733, 734, 3, 427, 213, 0, 734, 735, 3, 439, 219, 0, 735, 66, 1, 0, 0, 0, 736, 737, 3, 407, 203, 0, 737, 738, 3, 401, 200, 0, 738, 739, 3, 439, 219, 0, 739, 740, 3, 401, 200, 0, 740, 741, 3, 403, 201, 0, 741, 742, 3, 401, 200, 0, 742, 743, 3, 437, 218, 0, 743, 744, 3, 409, 204, 0, 744, 68, 1, 0, 0, 0, 745, 746, 3, 407, 203, 0, 746, 747, 3, 401, 200, 0, 747, 748, 3, 439, 219, 0, 748, 749, 3, 401, 200, 0, 749, 750, 3, 403, 201, 0, 750, 751, 3, 401, 200, 0, 751, 752, 3, 437, 218, 0, 752, 753, 3, 409, 204, 0, 753, 754, 3, 437, 218, 0, 754, 70, 1, 0, 0, 0, 755, 756, 3, 407, 203, 0, 756, 757, 3, 401, 200, 0, 757, 758, 3, 439, 219, 0, 758, 759, 3, 409, 204, 0, 759, 72, 1, 0, 0, 0, 760, 761, 3, 407, 203, 0, 761, 762, 3, 401, 200, 0, 762, 763, 3, 449, 224, 0, 763, 74, 1, 0, 0, 0, 764, 765, 3, 407, 203, 0, 765, 766, 3, 409, 204, 0, 766, 767, 3, 407, 203, 0, 767, 768, 3, 441, 220, 0, 768, 769, 3, 431, 215, 0, 769, 770, 3, 423, 211, 0, 770, 771, 3, 417, 208, 0, 771, 772, 3, 405, 202, 0, 772, 773, 3, 401, 200, 0, 773, 774, 3, 439, 219, 0, 774, 775, 3, 409, 204, 0, 775, 76, 1, 0, 0, 0, 776, 777, 3, 407, 203, 0, 777, 778, 3, 409, 204, 0, 778, 779, 3, 411, 205, 0, 779, 780, 3, 401, 200, 0, 780, 781, 3, 441, 220, 0, 781, 782, 3, 423, 211, 0, 782, 783, 3, 439, 219, 0, 783, 78, 1, 0, 0, 0, 784, 785, 3, 407, 203, 0, 785, 786, 3, 409, 204, 0, 786, 787, 3, 423, 211, 0, 787, 788, 3, 401, 200, 0, 788, 789, 3, 449, 224, 0, 789, 80, 1, 0, 0, 0, 790, 791, 3, 407, 203, 0, 791, 792, 3, 409, 204, 0, 792, 793, 3, 423, 211, 0, 793, 794, 3, 409, 204, 0, 794, 795, 3, 439, 219, 0, 795, 796, 3, 409, 204, 0, 796, 82, 1, 0, 0, 0, 797, 798, 3, 407, 203, 0, 798, 799, 3, 409, 204, 0, 799, 800, 3, 437, 218, 0, 800, 801, 3, 405, 202, 0, 801, 84, 1, 0, 0, 0, 802, 803, 3, 407, 203, 0, 803, 804, 3, 409, 204, 0, 804, 805, 3, 437, 218, 0, 805, 806, 3, 405, 202, 0, 806, 807, 3, 409, 204, 0, 807, 808, 3, 427, 213, 0, 808, 809, 3, 407, 203, 0, 809, 810, 3, 417, 208, 0, 810, 811, 3, 427, 213, 0, 811, 812, 3, 413, 206, 0, 812, 86, 1, 0, 0, 0, 813, 814, 3, 407, 203, 0, 814, 815, 3, 409, 204, 0, 815, 816, 3, 437, 218, 0, 816, 817, 3, 405, 202, 0, 817, 818, 3, 435, 217, 0, 818, 819, 3, 417, 208, 0, 819, 820, 3, 403, 201, 0, 820, 821, 3, 409, 204, 0, 821, 88, 1, 0, 0, 0, 822, 823, 3, 407, 203, 0, 823, 824, 3, 409, 204, 0, 824, 825, 3, 439, 219, 0, 825, 826, 3, 401, 200, 0, 826, 827, 3, 405, 202, 0, 827, 828, 3, 415, 207, 0, 828, 90, 1, 0, 0, 0, 829, 830, 3, 407, 203, 0, 830, 831, 3, 417, 208, 0, 831, 832, 3, 405, 202, 0, 832, 833, 3, 439, 219, 0, 833, 834, 3, 417, 208, 0, 834, 835, 3, 429, 214, 0, 835, 836, 3, 427, 213, 0, 836, 837, 3, 401, 200, 0, 837, 838, 3, 435, 217, 0, 838, 839, 3, 417, 208, 0, 839, 840, 3, 409, 204, 0, 840, 841, 3, 437, 218, 0, 841, 92, 1, 0, 0, 0, 842, 843, 3, 407, 203, 0, 843, 844, 3, 417, 208, 0, 844, 845, 3, 405, 202, 0, 845, 846, 3, 439, 219, 0, 846, 847, 3, 417, 208, 0, 847, 848, 3, 429, 214, 0, 848, 849, 3, 427, 213, 0, 849, 850, 3, 401, 200, 0, 850, 851, 3, 435, 217, 0, 851, 852, 3, 449, 224, 0, 852, 94, 1, 0, 0, 0, 853, 854, 3, 407, 203, 0, 854, 855, 3, 417, 208, 0, 855, 856, 3, 437, 218, 0, 856, 857, 3, 421, 210, 0, 857, 96, 1, 0, 0, 0, 858, 859, 3, 407, 203, 0, 859, 860, 3, 417, 208, 0, 860, 861, 3, 437, 218, 0, 861, 862, 3, 439, 219, 0, 862, 863, 3, 417, 208, 0, 863, 864, 3, 427, 213, 0, 864, 865, 3, 405, 202, 0, 865, 866, 3, 439, 219, 0, 866, 98, 1, 0, 0, 0, 867, 868, 3, 407, 203, 0, 868, 869, 3, 417, 208, 0, 869, 870, 3, 437, 218, 0, 870, 871, 3, 439, 219, 0, 871, 872, 3, 435, 217, 0, 872, 873, 3, 417, 208, 0, 873, 874, 3, 403, 201, 0, 874, 875, 3, 441, 220, 0, 875, 876, 3, 439, 219, 0, 876, 877, 3, 409, 204, 0, 877, 878, 3, 407, 203, 0, 878, 100, 1, 0, 0, 0, 879, 880, 3, 407, 203, 0, 880, 881, 3, 435, 217, 0, 881, 882, 3, 429, 214, 0, 882, 883, 3, 431, 215, 0, 883, 102, 1, 0, 0, 0, 884, 885, 3, 409, 204, 0, 885, 886, 3, 423, 211, 0, 886, 887, 3, 437, 218, 0, 887, 888, 3, 409, 204, 0, 888, 104, 1, 0, 0, 0, 889, 890, 3, 409, 204, 0, 890, 891, 3, 427, 213, 0, 891, 892, 3, 407, 203, 0, 892, 106, 1, 0, 0, 0, 893, 894, 3, 409, 204, 0, 894, 895, 3, 427, 213, 0, 895, 896, 3, 413, 206, 0, 896, 897, 3, 417, 208, 0, 897, 898, 3, 427, 213, 0, 898, 899, 3, 409, 204, 0, 899, 108, 1, 0, 0, 0, 900, 901, 3, 409, 204, 0, 901, 902, 3, 443, 221, 0, 902, 903, 3, 409, 204, 0, 903, 904, 3, 427, 213, 0, 904, 905, 3, 439, 219, 0, 905, 906, 3, 437, 218, 0, 906, 110, 1, 0, 0, 0, 907, 908, 3, 409, 204, 0, 908, 909, 3, 447, 223, 0, 909, 910, 3, 417, 208, 0, 910, 911, 3, 437, 218, 0, 911, 912, 3, 439, 219, 0, 912, 913, 3, 437, 218, 0, 913, 112, 1, 0, 0, 0, 914, 915, 3, 409, 204, 0, 915, 916, 3, 447, 223, 0, 916, 917, 3, 431, 215, 0, 917, 918, 3, 423, 211, 0, 918, 919, 3, 401, 200, 0, 919, 920, 3, 417, 208, 0, 920, 921, 3, 427, 213, 0, 921, 114, 1, 0, 0, 0, 922, 923, 3, 409, 204, 0, 923, 924, 3, 447, 223, 0, 924, 925, 3, 431, 215, 0, 925, 926, 3, 435, 217, 0, 926, 927, 3, 409, 204, 0, 927, 928, 3, 437, 218, 0, 928, 929, 3, 437, 218, 0, 929, 930, 3, 417, 208, 0, 930, 931, 3, 429, 214, 0, 931, 932, 3, 427, 213, 0, 932, 116, 1, 0, 0, 0, 933, 934, 3, 409, 204, 0, 934, 935, 3, 447, 223, 0, 935, 936, 3, 439, 219, 0, 936, 937, 3, 435, 217, 0, 937, 938, 3, 401, 200, 0, 938, 939, 3, 405, 202, 0, 939, 940, 3, 439, 219, 0, 940, 118, 1, 0, 0, 0, 941, 942, 3, 411, 205, 0, 942, 943, 3, 409, 204, 0, 943, 944, 3, 439, 219, 0, 944, 945, 3, 405, 202, 0, 945, 946, 3, 415, 207, 0, 946, 947, 3, 409, 204, 0, 947, 948, 3, 437, 218, 0, 948, 120, 1, 0, 0, 0, 949, 950, 3, 411, 205, 0, 950, 951, 3, 417, 208, 0, 951, 952, 3, 427, 213, 0, 952, 953, 3, 401, 200, 0, 953, 954, 3, 423, 211, 0, 954, 122, 1, 0, 0, 0, 955, 956, 3, 411, 205, 0, 956, 957, 3, 417, 208, 0, 957, 958, 3, 435, 217, 0, 958, 959, 3, 437, 218, 0, 959, 960, 3, 439, 219, 0, 960, 124, 1, 0, 0, 0, 961, 962, 3, 411, 205, 0, 962, 963, 3, 423, 211, 0, 963, 964, 3, 441, 220, 0, 964, 965, 3, 437, 218, 0, 965, 966, 3, 415, 207, 0, 966, 126, 1, 0, 0, 0, 967, 968, 3, 411, 205, 0, 968, 969, 3, 429, 214, 0, 969, 970, 3, 423, 211, 0, 970, 971, 3, 423, 211, 0, 971, 972, 3, 429, 214, 0, 972, 973, 3, 445, 222, 0, 973, 974, 3, 417, 208, 0, 974, 975, 3, 427, 213, 0, 975, 976, 3, 413, 206, 0, 976, 128, 1, 0, 0, 0, 977, 978, 3, 411, 205, 0, 978, 979, 3, 429, 214, 0, 979, 980, 3, 435, 217, 0, 980, 130, 1, 0, 0, 0, 981, 982, 3, 411, 205, 0, 982, 983, 3, 429, 214, 0, 983, 984, 3, 435, 217, 0, 984, 985, 3, 425, 212, 0, 985, 986, 3, 401, 200, 0, 986, 987, 3, 439, 219, 0, 987, 132, 1, 0, 0, 0, 988, 989, 3, 411, 205, 0, 989, 990, 3, 435, 217, 0, 990, 991, 3, 409, 204, 0, 991, 992, 3, 409, 204, 0, 992, 993, 3, 451, 225, 0, 993, 994, 3, 409, 204, 0, 994, 134, 1, 0, 0, 0, 995, 996, 3, 411, 205, 0, 996, 997, 3, 435, 217, 0, 997, 998, 3, 429, 214, 0, 998, 999, 3, 425, 212, 0, 999, 136, 1, 0, 0, 0, 1000, 1001, 3, 411, 205, 0, 1001, 1002, 3, 441, 220, 0, 1002, 1003, 3, 423, 211, 0, 1003, 1004, 3, 423, 211, 0, 1004, 138, 1, 0, 0, 0, 1005, 1006, 3, 411, 205, 0, 1006, 1007, 3, 441, 220, 0, 1007, 1008, 3, 427, 213, 0, 1008, 1009, 3, 405, 202, 0, 1009, 1010, 3, 439, 219, 0, 1010, 1011, 3, 417, 208, 0, 1011, 1012, 3, 429, 214, 0, 1012, 1013, 3, 427, 213, 0, 1013, 140, 1, 0, 0, 0, 1014, 1015, 3, 413, 206, 0, 1015, 1016, 3, 423, 211, 0, 1016, 1017, 3, 429, 214, 0, 1017, 1018, 3, 403, 201, 0, 1018, 1019, 3, 401, 200, 0, 1019, 1020, 3, 423, 211, 0, 1020, 142, 1, 0, 0, 0, 1021, 1022, 3, 413, 206, 0, 1022, 1023, 3, 435, 217, 0, 1023, 1024, 3, 401, 200, 0, 1024, 1025, 3, 427, 213, 0, 1025, 1026, 3, 441, 220, 0, 1026, 1027, 3, 423, 211, 0, 1027, 1028, 3, 401, 200, 0, 1028, 1029, 3, 435, 217, 0, 1029, 1030, 3, 417, 208, 0, 1030, 1031, 3, 439, 219, 0, 1031, 1032, 3, 449, 224, 0, 1032, 144, 1, 0, 0, 0, 1033, 1034, 3, 413, 206, 0, 1034, 1035, 3, 435, 217, 0, 1035, 1036, 3, 429, 214, 0, 1036, 1037, 3, 441, 220, 0, 1037, 1038, 3, 431, 215, 0, 1038, 146, 1, 0, 0, 0, 1039, 1040, 3, 415, 207, 0, 1040, 1041, 3, 401, 200, 0, 1041, 1042, 3, 443, 221, 0, 1042, 1043, 3, 417, 208, 0, 1043, 1044, 3, 427, 213, 0, 1044, 1045, 3, 413, 206, 0, 1045, 148, 1, 0, 0, 0, 1046, 1047, 3, 415, 207, 0, 1047, 1048, 3, 417, 208, 0, 1048, 1049, 3, 409, 204, 0, 1049, 1050, 3, 435, 217, 0, 1050, 1051, 3, 401, 200, 0, 1051, 1052, 3, 435, 217, 0, 1052, 1053, 3, 405, 202, 0, 1053, 1054, 3, 415, 207, 0, 1054, 1055, 3, 417, 208, 0, 1055, 1056, 3, 405, 202, 0, 1056, 1057, 3, 401, 200, 0, 1057, 1058, 3, 423, 211, 0, 1058, 150, 1, 0, 0, 0, 1059, 1060, 3, 415, 207, 0, 1060, 1061, 3, 429, 214, 0, 1061, 1062, 3, 441, 220, 0, 1062, 1063, 3, 435, 217, 0, 1063, 152, 1, 0, 0, 0, 1064, 1065, 3, 417, 208, 0, 1065, 1066, 3, 407, 203, 0, 1066, 154, 1, 0, 0, 0, 1067, 1068, 3, 417, 208, 0, 1068, 1069, 3, 411, 205, 0, 1069, 156, 1, 0, 0, 0, 1070, 1071, 3, 417, 208, 0, 1071, 1072, 3, 423, 211, 0, 1072, 1073, 3, 417, 208, 0, 1073, 1074, 3, 421, 210, 0, 1074, 1075, 3, 409, 204, 0, 1075, 158, 1, 0, 0, 0, 1076, 1077, 3, 417, 208, 0, 1077, 1078, 3, 427, 213, 0, 1078, 160, 1, 0, 0, 0, 1079, 1080, 3, 417, 208, 0, 1080, 1081, 3, 427, 213, 0, 1081, 1082, 3, 407, 203, 0, 1082, 1083, 3, 409, 204, 0, 1083, 1084, 3, 447, 223, 0, 1084, 162, 1, 0, 0, 0, 1085, 1086, 3, 417, 208, 0, 1086, 1087, 3, 427, 213, 0, 1087, 1088, 3, 411, 205, 0, 1088, 1099, 1, 0, 0, 0, 1089, 1090, 3, 417, 208, 0, 1090, 1091, 3, 427, 213, 0, 1091, 1092, 3, 411, 205, 0, 1092, 1093, 3, 417, 208, 0, 1093, 1094, 3, 427, 213, 0, 1094, 1095, 3, 417, 208, 0, 1095, 1096, 3, 439, 219, 0, 1096, 1097, 3, 449, 224, 0, 1097, 1099, 1, 0, 0, 0, 1098, 1085, 1, 0, 0, 0, 1098, 1089, 1, 0, 0, 0, 1099, 164, 1, 0, 0, 0, 1100, 1101, 3, 417, 208, 0, 1101, 1102, 3, 427, 213, 0, 1102, 1103, 3, 419, 209, 0, 1103, 1104, 3, 409, 204, 0, 1104, 1105, 3, 405, 202, 0, 1105, 1106, 3, 439, 219, 0, 1106, 1107, 3, 417, 208, 0, 1107, 1108, 3, 443, 221, 0, 1108, 1109, 3, 409, 204, 0, 1109, 166, 1, 0, 0, 0, 1110, 1111, 3, 417, 208, 0, 1111, 1112, 3, 427, 213, 0, 1112, 1113, 3, 427, 213, 0, 1113, 1114, 3, 409, 204, 0, 1114, 1115, 3, 435, 217, 0, 1115, 168, 1, 0, 0, 0, 1116, 1117, 3, 417, 208, 0, 1117, 1118, 3, 427, 213, 0, 1118, 1119, 3, 437, 218, 0, 1119, 1120, 3, 409, 204, 0, 1120, 1121, 3, 435, 217, 0, 1121, 1122, 3, 439, 219, 0, 1122, 170, 1, 0, 0, 0, 1123, 1124, 3, 417, 208, 0, 1124, 1125, 3, 427, 213, 0, 1125, 1126, 3, 439, 219, 0, 1126, 1127, 3, 409, 204, 0, 1127, 1128, 3, 435, 217, 0, 1128, 1129, 3, 443, 221, 0, 1129, 1130, 3, 401, 200, 0, 1130, 1131, 3, 423, 211, 0, 1131, 172, 1, 0, 0, 0, 1132, 1133, 3, 417, 208, 0, 1133, 1134, 3, 427, 213, 0, 1134, 1135, 3, 439, 219, 0, 1135, 1136, 3, 429, 214, 0, 1136, 174, 1, 0, 0, 0, 1137, 1138, 3, 417, 208, 0, 1138, 1139, 3, 437, 218, 0, 1139, 176, 1, 0, 0, 0, 1140, 1141, 3, 417, 208, 0, 1141, 1142, 3, 437, 218, 0, 1142, 1143, 3, 523, 261, 0, 1143, 1144, 3, 429, 214, 0, 1144, 1145, 3, 403, 201, 0, 1145, 1146, 3, 419, 209, 0, 1146, 1147, 3, 409, 204, 0, 1147, 1148, 3, 405, 202, 0, 1148, 1149, 3, 439, 219, 0, 1149, 1150, 3, 523, 261, 0, 1150, 1151, 3, 417, 208, 0, 1151, 1152, 3, 407, 203, 0, 1152, 178, 1, 0, 0, 0, 1153, 1154, 3, 419, 209, 0, 1154, 1155, 3, 429, 214, 0, 1155, 1156, 3, 417, 208, 0, 1156, 1157, 3, 427, 213, 0, 1157, 180, 1, 0, 0, 0, 1158, 1159, 3, 421, 210, 0, 1159, 1160, 3, 409, 204, 0, 1160, 1161, 3, 449, 224, 0, 1161, 182, 1, 0, 0, 0, 1162, 1163, 3, 421, 210, 0, 1163, 1164, 3, 417, 208, 0, 1164, 1165, 3, 423, 211, 0, 1165, 1166, 3, 423, 211, 0, 1166, 184, 1, 0, 0, 0, 1167, 1168, 3, 423, 211, 0, 1168, 1169, 3, 401, 200, 0, 1169, 1170, 3, 437, 218, 0, 1170, 1171, 3, 439, 219, 0, 1171, 186, 1, 0, 0, 0, 1172, 1173, 3, 423, 211, 0, 1173, 1174, 3, 401, 200, 0, 1174, 1175, 3, 449, 224, 0, 1175, 1176, 3, 429, 214, 0, 1176, 1177, 3, 441, 220, 0, 1177, 1178, 3, 439, 219, 0, 1178, 188, 1, 0, 0, 0, 1179, 1180, 3, 423, 211, 0, 1180, 1181, 3, 409, 204, 0, 1181, 1182, 3, 401, 200, 0, 1182, 1183, 3, 407, 203, 0, 1183, 1184, 3, 417, 208, 0, 1184, 1185, 3, 427, 213, 0, 1185, 1186, 3, 413, 206, 0, 1186, 190, 1, 0, 0, 0, 1187, 1188, 3, 423, 211, 0, 1188, 1189, 3, 409, 204, 0, 1189, 1190, 3, 411, 205, 0, 1190, 1191, 3, 439, 219, 0, 1191, 192, 1, 0, 0, 0, 1192, 1193, 3, 423, 211, 0, 1193, 1194, 3, 417, 208, 0, 1194, 1195, 3, 411, 205, 0, 1195, 1196, 3, 409, 204, 0, 1196, 1197, 3, 439, 219, 0, 1197, 1198, 3, 417, 208, 0, 1198, 1199, 3, 425, 212, 0, 1199, 1200, 3, 409, 204, 0, 1200, 194, 1, 0, 0, 0, 1201, 1202, 3, 423, 211, 0, 1202, 1203, 3, 417, 208, 0, 1203, 1204, 3, 421, 210, 0, 1204, 1205, 3, 409, 204, 0, 1205, 196, 1, 0, 0, 0, 1206, 1207, 3, 423, 211, 0, 1207, 1208, 3, 417, 208, 0, 1208, 1209, 3, 425, 212, 0, 1209, 1210, 3, 417, 208, 0, 1210, 1211, 3, 439, 219, 0, 1211, 198, 1, 0, 0, 0, 1212, 1213, 3, 423, 211, 0, 1213, 1214, 3, 417, 208, 0, 1214, 1215, 3, 443, 221, 0, 1215, 1216, 3, 409, 204, 0, 1216, 200, 1, 0, 0, 0, 1217, 1218, 3, 423, 211, 0, 1218, 1219, 3, 429, 214, 0, 1219, 1220, 3, 405, 202, 0, 1220, 1221, 3, 401, 200, 0, 1221, 1222, 3, 423, 211, 0, 1222, 202, 1, 0, 0, 0, 1223, 1224, 3, 423, 211, 0, 1224, 1225, 3, 429, 214, 0, 1225, 1226, 3, 413, 206, 0, 1226, 1227, 3, 437, 218, 0, 1227, 204, 1, 0, 0, 0, 1228, 1229, 3, 425, 212, 0, 1229, 1230, 3, 401, 200, 0, 1230, 1231, 3, 439, 219, 0, 1231, 1232, 3, 409, 204, 0, 1232, 1233, 3, 435, 217, 0, 1233, 1234, 3, 417, 208, 0, 1234, 1235, 3, 401, 200, 0, 1235, 1236, 3, 423, 211, 0, 1236, 1237, 3, 417, 208, 0, 1237, 1238, 3, 451, 225, 0, 1238, 1239, 3, 409, 204, 0, 1239, 206, 1, 0, 0, 0, 1240, 1241, 3, 425, 212, 0, 1241, 1242, 3, 401, 200, 0, 1242, 1243, 3, 439, 219, 0, 1243, 1244, 3, 409, 204, 0, 1244, 1245, 3, 435, 217, 0, 1245, 1246, 3, 417, 208, 0, 1246, 1247, 3, 401, 200, 0, 1247, 1248, 3, 423, 211, 0, 1248, 1249, 3, 417, 208, 0, 1249, 1250, 3, 451, 225, 0, 1250, 1251, 3, 409, 204, 0, 1251, 1252, 3, 407, 203, 0, 1252, 208, 1, 0, 0, 0, 1253, 1254, 3, 425, 212, 0, 1254, 1255, 3, 401, 200, 0, 1255, 1256, 3, 447, 223, 0, 1256, 210, 1, 0, 0, 0, 1257, 1258, 3, 425, 212, 0, 1258, 1259, 3, 409, 204, 0, 1259, 1260, 3, 435, 217, 0, 1260, 1261, 3, 413, 206, 0, 1261, 1262, 3, 409, 204, 0, 1262, 1263, 3, 437, 218, 0, 1263, 212, 1, 0, 0, 0, 1264, 1265, 3, 425, 212, 0, 1265, 1266, 3, 417, 208, 0, 1266, 1267, 3, 427, 213, 0, 1267, 214, 1, 0, 0, 0, 1268, 1269, 3, 425, 212, 0, 1269, 1270, 3, 417, 208, 0, 1270, 1271, 3, 427, 213, 0, 1271, 1272, 3, 441, 220, 0, 1272, 1273, 3, 439, 219, 0, 1273, 1274, 3, 409, 204, 0, 1274, 216, 1, 0, 0, 0, 1275, 1276, 3, 425, 212, 0, 1276, 1277, 3, 429, 214, 0, 1277, 1278, 3, 407, 203, 0, 1278, 1279, 3, 417, 208, 0, 1279, 1280, 3, 411, 205, 0, 1280, 1281, 3, 449, 224, 0, 1281, 218, 1, 0, 0, 0, 1282, 1283, 3, 425, 212, 0, 1283, 1284, 3, 429, 214, 0, 1284, 1285, 3, 427, 213, 0, 1285, 1286, 3, 439, 219, 0, 1286, 1287, 3, 415, 207, 0, 1287, 220, 1, 0, 0, 0, 1288, 1289, 3, 425, 212, 0, 1289, 1290, 3, 429, 214, 0, 1290, 1291, 3, 443, 221, 0, 1291, 1292, 3, 409, 204, 0, 1292, 222, 1, 0, 0, 0, 1293, 1294, 3, 425, 212, 0, 1294, 1295, 3, 441, 220, 0, 1295, 1296, 3, 439, 219, 0, 1296, 1297, 3, 401, 200, 0, 1297, 1298, 3, 439, 219, 0, 1298, 1299, 3, 417, 208, 0, 1299, 1300, 3, 429, 214, 0, 1300, 1301, 3, 427, 213, 0, 1301, 224, 1, 0, 0, 0, 1302, 1303, 3, 427, 213, 0, 1303, 1304, 3, 401, 200, 0, 1304, 1305, 3, 427, 213, 0, 1305, 226, 1, 0, 0, 0, 1306, 1307, 3, 427, 213, 0, 1307, 1308, 3, 429, 214, 0, 1308, 228, 1, 0, 0, 0, 1309, 1310, 3, 427, 213, 0, 1310, 1311, 3, 429, 214, 0, 1311, 1312, 3, 439, 219, 0, 1312, 230, 1, 0, 0, 0, 1313, 1314, 3, 427, 213, 0, 1314, 1315, 3, 441, 220, 0, 1315, 1316, 3, 423, 211, 0, 1316, 1317, 3, 423, 211, 0, 1317, 232, 1, 0, 0, 0, 1318, 1319, 3, 427, 213, 0, 1319, 1320, 3, 441, 220, 0, 1320, 1321, 3, 423, 211, 0, 1321, 1322, 3, 423, 211, 0, 1322, 1323, 3, 437, 218, 0, 1323, 234, 1, 0, 0, 0, 1324, 1325, 3, 429, 214, 0, 1325, 1326, 3, 411, 205, 0, 1326, 1327, 3, 411, 205, 0, 1327, 1328, 3, 437, 218, 0, 1328, 1329, 3, 409, 204, 0, 1329, 1330, 3, 439, 219, 0, 1330, 236, 1, 0, 0, 0, 1331, 1332, 3, 429, 214, 0, 1332, 1333, 3, 427, 213, 0, 1333, 238, 1, 0, 0, 0, 1334, 1335, 3, 429, 214, 0, 1335, 1336, 3, 431, 215, 0, 1336, 1337, 3, 439, 219, 0, 1337, 1338, 3, 417, 208, 0, 1338, 1339, 3, 425, 212, 0, 1339, 1340, 3, 417, 208, 0, 1340, 1341, 3, 451, 225, 0, 1341, 1342, 3, 409, 204, 0, 1342, 240, 1, 0, 0, 0, 1343, 1344, 3, 429, 214, 0, 1344, 1345, 3, 435, 217, 0, 1345, 242, 1, 0, 0, 0, 1346, 1347, 3, 429, 214, 0, 1347, 1348, 3, 435, 217, 0, 1348, 1349, 3, 407, 203, 0, 1349, 1350, 3, 409, 204, 0, 1350, 1351, 3, 435, 217, 0, 1351, 244, 1, 0, 0, 0, 1352, 1353, 3, 429, 214, 0, 1353, 1354, 3, 441, 220, 0, 1354, 1355, 3, 439, 219, 0, 1355, 1356, 3, 409, 204, 0, 1356, 1357, 3, 435, 217, 0, 1357, 246, 1, 0, 0, 0, 1358, 1359, 3, 429, 214, 0, 1359, 1360, 3, 441, 220, 0, 1360, 1361, 3, 439, 219, 0, 1361, 1362, 3, 411, 205, 0, 1362, 1363, 3, 417, 208, 0, 1363, 1364, 3, 423, 211, 0, 1364, 1365, 3, 409, 204, 0, 1365, 248, 1, 0, 0, 0, 1366, 1367, 3, 429, 214, 0, 1367, 1368, 3, 443, 221, 0, 1368, 1369, 3, 409, 204, 0, 1369, 1370, 3, 435, 217, 0, 1370, 250, 1, 0, 0, 0, 1371, 1372, 3, 431, 215, 0, 1372, 1373, 3, 401, 200, 0, 1373, 1374, 3, 435, 217, 0, 1374, 1375, 3, 439, 219, 0, 1375, 1376, 3, 417, 208, 0, 1376, 1377, 3, 439, 219, 0, 1377, 1378, 3, 417, 208, 0, 1378, 1379, 3, 429, 214, 0, 1379, 1380, 3, 427, 213, 0, 1380, 252, 1, 0, 0, 0, 1381, 1382, 3, 431, 215, 0, 1382, 1383, 3, 429, 214, 0, 1383, 1384, 3, 431, 215, 0, 1384, 1385, 3, 441, 220, 0, 1385, 1386, 3, 423, 211, 0, 1386, 1387, 3, 401, 200, 0, 1387, 1388, 3, 439, 219, 0, 1388, 1389, 3, 409, 204, 0, 1389, 254, 1, 0, 0, 0, 1390, 1391, 3, 431, 215, 0, 1391, 1392, 3, 435, 217, 0, 1392, 1393, 3, 409, 204, 0, 1393, 1394, 3, 405, 202, 0, 1394, 1395, 3, 409, 204, 0, 1395, 1396, 3, 407, 203, 0, 1396, 1397, 3, 417, 208, 0, 1397, 1398, 3, 427, 213, 0, 1398, 1399, 3, 413, 206, 0, 1399, 256, 1, 0, 0, 0, 1400, 1401, 3, 431, 215, 0, 1401, 1402, 3, 435, 217, 0, 1402, 1403, 3, 409, 204, 0, 1403, 1404, 3, 445, 222, 0, 1404, 1405, 3, 415, 207, 0, 1405, 1406, 3, 409, 204, 0, 1406, 1407, 3, 435, 217, 0, 1407, 1408, 3, 409, 204, 0, 1408, 258, 1, 0, 0, 0, 1409, 1410, 3, 431, 215, 0, 1410, 1411, 3, 435, 217, 0, 1411, 1412, 3, 417, 208, 0, 1412, 1413, 3, 425, 212, 0, 1413, 1414, 3, 401, 200, 0, 1414, 1415, 3, 435, 217, 0, 1415, 1416, 3, 449, 224, 0, 1416, 260, 1, 0, 0, 0, 1417, 1418, 3, 431, 215, 0, 1418, 1419, 3, 435, 217, 0, 1419, 1420, 3, 429, 214, 0, 1420, 1421, 3, 419, 209, 0, 1421, 1422, 3, 409, 204, 0, 1422, 1423, 3, 405, 202, 0, 1423, 1424, 3, 439, 219, 0, 1424, 1425, 3, 417, 208, 0, 1425, 1426, 3, 429, 214, 0, 1426, 1427, 3, 427, 213, 0, 1427, 262, 1, 0, 0, 0, 1428, 1429, 3, 433, 216, 0, 1429, 1430, 3, 441, 220, 0, 1430, 1431, 3, 401, 200, 0, 1431, 1432, 3, 435, 217, 0, 1432, 1433, 3, 439, 219, 0, 1433, 1434, 3, 409, 204, 0, 1434, 1435, 3, 435, 217, 0, 1435, 264, 1, 0, 0, 0, 1436, 1437, 3, 435, 217, 0, 1437, 1438, 3, 401, 200, 0, 1438, 1439, 3, 427, 213, 0, 1439, 1440, 3, 413, 206, 0, 1440, 1441, 3, 409, 204, 0, 1441, 266, 1, 0, 0, 0, 1442, 1443, 3, 435, 217, 0, 1443, 1444, 3, 409, 204, 0, 1444, 1445, 3, 423, 211, 0, 1445, 1446, 3, 429, 214, 0, 1446, 1447, 3, 401, 200, 0, 1447, 1448, 3, 407, 203, 0, 1448, 268, 1, 0, 0, 0, 1449, 1450, 3, 435, 217, 0, 1450, 1451, 3, 409, 204, 0, 1451, 1452, 3, 425, 212, 0, 1452, 1453, 3, 429, 214, 0, 1453, 1454, 3, 443, 221, 0, 1454, 1455, 3, 409, 204, 0, 1455, 270, 1, 0, 0, 0, 1456, 1457, 3, 435, 217, 0, 1457, 1458, 3, 409, 204, 0, 1458, 1459, 3, 427, 213, 0, 1459, 1460, 3, 401, 200, 0, 1460, 1461, 3, 425, 212, 0, 1461, 1462, 3, 409, 204, 0, 1462, 272, 1, 0, 0, 0, 1463, 1464, 3, 435, 217, 0, 1464, 1465, 3, 409, 204, 0, 1465, 1466, 3, 431, 215, 0, 1466, 1467, 3, 423, 211, 0, 1467, 1468, 3, 401, 200, 0, 1468, 1469, 3, 405, 202, 0, 1469, 1470, 3, 409, 204, 0, 1470, 274, 1, 0, 0, 0, 1471, 1472, 3, 435, 217, 0, 1472, 1473, 3, 409, 204, 0, 1473, 1474, 3, 431, 215, 0, 1474, 1475, 3, 423, 211, 0, 1475, 1476, 3, 417, 208, 0, 1476, 1477, 3, 405, 202, 0, 1477, 1478, 3, 401, 200, 0, 1478, 276, 1, 0, 0, 0, 1479, 1480, 3, 435, 217, 0, 1480, 1481, 3, 409, 204, 0, 1481, 1482, 3, 431, 215, 0, 1482, 1483, 3, 423, 211, 0, 1483, 1484, 3, 417, 208, 0, 1484, 1485, 3, 405, 202, 0, 1485, 1486, 3, 401, 200, 0, 1486, 1487, 3, 439, 219, 0, 1487, 1488, 3, 409, 204, 0, 1488, 1489, 3, 407, 203, 0, 1489, 278, 1, 0, 0, 0, 1490, 1491, 3, 435, 217, 0, 1491, 1492, 3, 417, 208, 0, 1492, 1493, 3, 413, 206, 0, 1493, 1494, 3, 415, 207, 0, 1494, 1495, 3, 439, 219, 0, 1495, 280, 1, 0, 0, 0, 1496, 1497, 3, 435, 217, 0, 1497, 1498, 3, 429, 214, 0, 1498, 1499, 3, 423, 211, 0, 1499, 1500, 3, 423, 211, 0, 1500, 1501, 3, 441, 220, 0, 1501, 1502, 3, 431, 215, 0, 1502, 282, 1, 0, 0, 0, 1503, 1504, 3, 435, 217, 0, 1504, 1505, 3, 429, 214, 0, 1505, 1506, 3, 445, 222, 0, 1506, 284, 1, 0, 0, 0, 1507, 1508, 3, 435, 217, 0, 1508, 1509, 3, 429, 214, 0, 1509, 1510, 3, 445, 222, 0, 1510, 1511, 3, 437, 218, 0, 1511, 286, 1, 0, 0, 0, 1512, 1513, 3, 437, 218, 0, 1513, 1514, 3, 401, 200, 0, 1514, 1515, 3, 425, 212, 0, 1515, 1516, 3, 431, 215, 0, 1516, 1517, 3, 423, 211, 0, 1517, 1518, 3, 409, 204, 0, 1518, 288, 1, 0, 0, 0, 1519, 1520, 3, 437, 218, 0, 1520, 1521, 3, 409, 204, 0, 1521, 1522, 3, 405, 202, 0, 1522, 1523, 3, 429, 214, 0, 1523, 1524, 3, 427, 213, 0, 1524, 1525, 3, 407, 203, 0, 1525, 290, 1, 0, 0, 0, 1526, 1527, 3, 437, 218, 0, 1527, 1528, 3, 409, 204, 0, 1528, 1529, 3, 423, 211, 0, 1529, 1530, 3, 409, 204, 0, 1530, 1531, 3, 405, 202, 0, 1531, 1532, 3, 439, 219, 0, 1532, 292, 1, 0, 0, 0, 1533, 1534, 3, 437, 218, 0, 1534, 1535, 3, 409, 204, 0, 1535, 1536, 3, 425, 212, 0, 1536, 1537, 3, 417, 208, 0, 1537, 294, 1, 0, 0, 0, 1538, 1539, 3, 437, 218, 0, 1539, 1540, 3, 409, 204, 0, 1540, 1541, 3, 427, 213, 0, 1541, 1542, 3, 407, 203, 0, 1542, 1543, 3, 437, 218, 0, 1543, 296, 1, 0, 0, 0, 1544, 1545, 3, 437, 218, 0, 1545, 1546, 3, 409, 204, 0, 1546, 1547, 3, 439, 219, 0, 1547, 298, 1, 0, 0, 0, 1548, 1549, 3, 437, 218, 0, 1549, 1550, 3, 409, 204, 0, 1550, 1551, 3, 439, 219, 0, 1551, 1552, 3, 439, 219, 0, 1552, 1553, 3, 417, 208, 0, 1553, 1554, 3, 427, 213, 0, 1554, 1555, 3, 413, 206, 0, 1555, 1556, 3, 437, 218, 0, 1556, 300, 1, 0, 0, 0, 1557, 1558, 3, 437, 218, 0, 1558, 1559, 3, 415, 207, 0, 1559, 1560, 3, 429, 214, 0, 1560, 1561, 3, 445, 222, 0, 1561, 302, 1, 0, 0, 0, 1562, 1563, 3, 437, 218, 0, 1563, 1564, 3, 429, 214, 0, 1564, 1565, 3, 441, 220, 0, 1565, 1566, 3, 435, 217, 0, 1566, 1567, 3, 405, 202, 0, 1567, 1568, 3, 409, 204, 0, 1568, 304, 1, 0, 0, 0, 1569, 1570, 3, 437, 218, 0, 1570, 1571, 3, 439, 219, 0, 1571, 1572, 3, 401, 200, 0, 1572, 1573, 3, 435, 217, 0, 1573, 1574, 3, 439, 219, 0, 1574, 306, 1, 0, 0, 0, 1575, 1576, 3, 437, 218, 0, 1576, 1577, 3, 439, 219, 0, 1577, 1578, 3, 429, 214, 0, 1578, 1579, 3, 431, 215, 0, 1579, 308, 1, 0, 0, 0, 1580, 1581, 3, 437, 218, 0, 1581, 1582, 3, 441, 220, 0, 1582, 1583, 3, 403, 201, 0, 1583, 1584, 3, 437, 218, 0, 1584, 1585, 3, 439, 219, 0, 1585, 1586, 3, 435, 217, 0, 1586, 1587, 3, 417, 208, 0, 1587, 1588, 3, 427, 213, 0, 1588, 1589, 3, 413, 206, 0, 1589, 310, 1, 0, 0, 0, 1590, 1591, 3, 437, 218, 0, 1591, 1592, 3, 449, 224, 0, 1592, 1593, 3, 427, 213, 0, 1593, 1594, 3, 405, 202, 0, 1594, 312, 1, 0, 0, 0, 1595, 1596, 3, 437, 218, 0, 1596, 1597, 3, 449, 224, 0, 1597, 1598, 3, 427, 213, 0, 1598, 1599, 3, 439, 219, 0, 1599, 1600, 3, 401, 200, 0, 1600, 1601, 3, 447, 223, 0, 1601, 314, 1, 0, 0, 0, 1602, 1603, 3, 437, 218, 0, 1603, 1604, 3, 449, 224, 0, 1604, 1605, 3, 437, 218, 0, 1605, 1606, 3, 439, 219, 0, 1606, 1607, 3, 409, 204, 0, 1607, 1608, 3, 425, 212, 0, 1608, 316, 1, 0, 0, 0, 1609, 1610, 3, 439, 219, 0, 1610, 1611, 3, 401, 200, 0, 1611, 1612, 3, 403, 201, 0, 1612, 1613, 3, 423, 211, 0, 1613, 1614, 3, 409, 204, 0, 1614, 318, 1, 0, 0, 0, 1615, 1616, 3, 439, 219, 0, 1616, 1617, 3, 401, 200, 0, 1617, 1618, 3, 403, 201, 0, 1618, 1619, 3, 423, 211, 0, 1619, 1620, 3, 409, 204, 0, 1620, 1621, 3, 437, 218, 0, 1621, 320, 1, 0, 0, 0, 1622, 1623, 3, 439, 219, 0, 1623, 1624, 3, 409, 204, 0, 1624, 1625, 3, 425, 212, 0, 1625, 1626, 3, 431, 215, 0, 1626, 1627, 3, 429, 214, 0, 1627, 1628, 3, 435, 217, 0, 1628, 1629, 3, 401, 200, 0, 1629, 1630, 3, 435, 217, 0, 1630, 1631, 3, 449, 224, 0, 1631, 322, 1, 0, 0, 0, 1632, 1633, 3, 439, 219, 0, 1633, 1634, 3, 409, 204, 0, 1634, 1635, 3, 437, 218, 0, 1635, 1636, 3, 439, 219, 0, 1636, 324, 1, 0, 0, 0, 1637, 1638, 3, 439, 219, 0, 1638, 1639, 3, 415, 207, 0, 1639, 1640, 3, 409, 204, 0, 1640, 1641, 3, 427, 213, 0, 1641, 326, 1, 0, 0, 0, 1642, 1643, 3, 439, 219, 0, 1643, 1644, 3, 417, 208, 0, 1644, 1645, 3, 409, 204, 0, 1645, 1646, 3, 437, 218, 0, 1646, 328, 1, 0, 0, 0, 1647, 1648, 3, 439, 219, 0, 1648, 1649, 3, 417, 208, 0, 1649, 1650, 3, 425, 212, 0, 1650, 1651, 3, 409, 204, 0, 1651, 1652, 3, 429, 214, 0, 1652, 1653, 3, 441, 220, 0, 1653, 1654, 3, 439, 219, 0, 1654, 330, 1, 0, 0, 0, 1655, 1656, 3, 439, 219, 0, 1656, 1657, 3, 417, 208, 0, 1657, 1658, 3, 425, 212, 0, 1658, 1659, 3, 409, 204, 0, 1659, 1660, 3, 437, 218, 0, 1660, 1661, 3, 439, 219, 0, 1661, 1662, 3, 401, 200, 0, 1662, 1663, 3, 425, 212, 0, 1663, 1664, 3, 431, 215, 0, 1664, 332, 1, 0, 0, 0, 1665, 1666, 3, 439, 219, 0, 1666, 1667, 3, 429, 214, 0, 1667, 334, 1, 0, 0, 0, 1668, 1669, 3, 439, 219, 0, 1669, 1670, 3, 429, 214, 0, 1670, 1671, 3, 431, 215, 0, 1671, 336, 1, 0, 0, 0, 1672, 1673, 3, 439, 219, 0, 1673, 1674, 3, 429, 214, 0, 1674, 1675, 3, 439, 219, 0, 1675, 1676, 3, 401, 200, 0, 1676, 1677, 3, 423, 211, 0, 1677, 1678, 3, 437, 218, 0, 1678, 338, 1, 0, 0, 0, 1679, 1680, 3, 439, 219, 0, 1680, 1681, 3, 435, 217, 0, 1681, 1682, 3, 401, 200, 0, 1682, 1683, 3, 417, 208, 0, 1683, 1684, 3, 423, 211, 0, 1684, 1685, 3, 417, 208, 0, 1685, 1686, 3, 427, 213, 0, 1686, 1687, 3, 413, 206, 0, 1687, 340, 1, 0, 0, 0, 1688, 1689, 3, 439, 219, 0, 1689, 1690, 3, 435, 217, 0, 1690, 1691, 3, 417, 208, 0, 1691, 1692, 3, 425, 212, 0, 1692, 342, 1, 0, 0, 0, 1693, 1694, 3, 439, 219, 0, 1694, 1695, 3, 435, 217, 0, 1695, 1696, 3, 441, 220, 0, 1696, 1697, 3, 427, 213, 0, 1697, 1698, 3, 405, 202, 0, 1698, 1699, 3, 401, 200, 0, 1699, 1700, 3, 439, 219, 0, 1700, 1701, 3, 409, 204, 0, 1701, 344, 1, 0, 0, 0, 1702, 1703, 3, 439, 219, 0, 1703, 1704, 3, 439, 219, 0, 1704, 1705, 3, 423, 211, 0, 1705, 346, 1, 0, 0, 0, 1706, 1707, 3, 439, 219, 0, 1707, 1708, 3, 449, 224, 0, 1708, 1709, 3, 431, 215, 0, 1709, 1710, 3, 409, 204, 0, 1710, 348, 1, 0, 0, 0, 1711, 1712, 3, 441, 220, 0, 1712, 1713, 3, 427, 213, 0, 1713, 1714, 3, 403, 201, 0, 1714, 1715, 3, 429, 214, 0, 1715, 1716, 3, 441, 220, 0, 1716, 1717, 3, 427, 213, 0, 1717, 1718, 3, 407, 203, 0, 1718, 1719, 3, 409, 204, 0, 1719, 1720, 3, 407, 203, 0, 1720, 350, 1, 0, 0, 0, 1721, 1722, 3, 441, 220, 0, 1722, 1723, 3, 427, 213, 0, 1723, 1724, 3, 417, 208, 0, 1724, 1725, 3, 429, 214, 0, 1725, 1726, 3, 427, 213, 0, 1726, 352, 1, 0, 0, 0, 1727, 1728, 3, 441, 220, 0, 1728, 1729, 3, 431, 215, 0, 1729, 1730, 3, 407, 203, 0, 1730, 1731, 3, 401, 200, 0, 1731, 1732, 3, 439, 219, 0, 1732, 1733, 3, 409, 204, 0, 1733, 354, 1, 0, 0, 0, 1734, 1735, 3, 441, 220, 0, 1735, 1736, 3, 437, 218, 0, 1736, 1737, 3, 409, 204, 0, 1737, 356, 1, 0, 0, 0, 1738, 1739, 3, 441, 220, 0, 1739, 1740, 3, 437, 218, 0, 1740, 1741, 3, 417, 208, 0, 1741, 1742, 3, 427, 213, 0, 1742, 1743, 3, 413, 206, 0, 1743, 358, 1, 0, 0, 0, 1744, 1745, 3, 441, 220, 0, 1745, 1746, 3, 441, 220, 0, 1746, 1747, 3, 417, 208, 0, 1747, 1748, 3, 407, 203, 0, 1748, 360, 1, 0, 0, 0, 1749, 1750, 3, 443, 221, 0, 1750, 1751, 3, 401, 200, 0, 1751, 1752, 3, 423, 211, 0, 1752, 1753, 3, 441, 220, 0, 1753, 1754, 3, 409, 204, 0, 1754, 1755, 3, 437, 218, 0, 1755, 362, 1, 0, 0, 0, 1756, 1757, 3, 443, 221, 0, 1757, 1758, 3, 417, 208, 0, 1758, 1759, 3, 409, 204, 0, 1759, 1760, 3, 445, 222, 0, 1760, 364, 1, 0, 0, 0, 1761, 1762, 3, 443, 221, 0, 1762, 1763, 3, 429, 214, 0, 1763, 1764, 3, 423, 211, 0, 1764, 1765, 3, 441, 220, 0, 1765, 1766, 3, 425, 212, 0, 1766, 1767, 3, 409, 204, 0, 1767, 366, 1, 0, 0, 0, 1768, 1769, 3, 445, 222, 0, 1769, 1770, 3, 401, 200, 0, 1770, 1771, 3, 439, 219, 0, 1771, 1772, 3, 405, 202, 0, 1772, 1773, 3, 415, 207, 0, 1773, 368, 1, 0, 0, 0, 1774, 1775, 3, 445, 222, 0, 1775, 1776, 3, 409, 204, 0, 1776, 1777, 3, 409, 204, 0, 1777, 1778, 3, 421, 210, 0, 1778, 370, 1, 0, 0, 0, 1779, 1780, 3, 445, 222, 0, 1780, 1781, 3, 415, 207, 0, 1781, 1782, 3, 409, 204, 0, 1782, 1783, 3, 427, 213, 0, 1783, 372, 1, 0, 0, 0, 1784, 1785, 3, 445, 222, 0, 1785, 1786, 3, 415, 207, 0, 1786, 1787, 3, 409, 204, 0, 1787, 1788, 3, 435, 217, 0, 1788, 1789, 3, 409, 204, 0, 1789, 374, 1, 0, 0, 0, 1790, 1791, 3, 445, 222, 0, 1791, 1792, 3, 417, 208, 0, 1792, 1793, 3, 427, 213, 0, 1793, 1794, 3, 407, 203, 0, 1794, 1795, 3, 429, 214, 0, 1795, 1796, 3, 445, 222, 0, 1796, 376, 1, 0, 0, 0, 1797, 1798, 3, 445, 222, 0, 1798, 1799, 3, 417, 208, 0, 1799, 1800, 3, 439, 219, 0, 1800, 1801, 3, 415, 207, 0, 1801, 378, 1, 0, 0, 0, 1802, 1803, 3, 449, 224, 0, 1803, 1804, 3, 409, 204, 0, 1804, 1805, 3, 401, 200, 0, 1805, 1806, 3, 435, 217, 0, 1806, 1813, 1, 0, 0, 0, 1807, 1808, 3, 449, 224, 0, 1808, 1809, 3, 449, 224, 0, 1809, 1810, 3, 449, 224, 0, 1810, 1811, 3, 449, 224, 0, 1811, 1813, 1, 0, 0, 0, 1812, 1802, 1, 0, 0, 0, 1812, 1807, 1, 0, 0, 0, 1813, 380, 1, 0, 0, 0, 1814, 1815, 5, 102, 0, 0, 1815, 1816, 5, 97, 0, 0, 1816, 1817, 5, 108, 0, 0, 1817, 1818, 5, 115, 0, 0, 1818, 1819, 5, 101, 0, 0, 1819, 382, 1, 0, 0, 0, 1820, 1821, 5, 116, 0, 0, 1821, 1822, 5, 114, 0, 0, 1822, 1823, 5, 117, 0, 0, 1823, 1824, 5, 101, 0, 0, 1824, 384, 1, 0, 0, 0, 1825, 1826, 3, 467, 233, 0, 1826, 1827, 3, 403, 201, 0, 1827, 1856, 1, 0, 0, 0, 1828, 1829, 3, 467, 233, 0, 1829, 1830, 3, 411, 205, 0, 1830, 1856, 1, 0, 0, 0, 1831, 1832, 3, 467, 233, 0, 1832, 1833, 3, 435, 217, 0, 1833, 1856, 1, 0, 0, 0, 1834, 1835, 3, 467, 233, 0, 1835, 1836, 3, 427, 213, 0, 1836, 1856, 1, 0, 0, 0, 1837, 1838, 3, 467, 233, 0, 1838, 1839, 3, 439, 219, 0, 1839, 1856, 1, 0, 0, 0, 1840, 1841, 3, 467, 233, 0, 1841, 1842, 5, 48, 0, 0, 1842, 1856, 1, 0, 0, 0, 1843, 1844, 3, 467, 233, 0, 1844, 1845, 3, 401, 200, 0, 1845, 1856, 1, 0, 0, 0, 1846, 1847, 3, 467, 233, 0, 1847, 1848, 3, 443, 221, 0, 1848, 1856, 1, 0, 0, 0, 1849, 1850, 3, 467, 233, 0, 1850, 1851, 3, 467, 233, 0, 1851, 1856, 1, 0, 0, 0, 1852, 1853, 3, 467, 233, 0, 1853, 1854, 3, 511, 255, 0, 1854, 1856, 1, 0, 0, 0, 1855, 1825, 1, 0, 0, 0, 1855, 1828, 1, 0, 0, 0, 1855, 1831, 1, 0, 0, 0, 1855, 1834, 1, 0, 0, 0, 1855, 1837, 1, 0, 0, 0, 1855, 1840, 1, 0, 0, 0, 1855, 1843, 1, 0, 0, 0, 1855, 1846, 1, 0, 0, 0, 1855, 1849, 1, 0, 0, 0, 1855, 1852, 1, 0, 0, 0, 1856, 386, 1, 0, 0, 0, 1857, 1861, 3, 453, 226, 0, 1858, 1861, 3, 523, 261, 0, 1859, 1861, 3, 477, 238, 0, 1860, 1857, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1859, 1, 0, 0, 0, 1861, 1868, 1, 0, 0, 0, 1862, 1867, 3, 453, 226, 0, 1863, 1867, 3, 523, 261, 0, 1864, 1867, 3, 457, 228, 0, 1865, 1867, 3, 477, 238, 0, 1866, 1862, 1, 0, 0, 0, 1866, 1863, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1866, 1865, 1, 0, 0, 0, 1867, 1870, 1, 0, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 1898, 1, 0, 0, 0, 1870, 1868, 1, 0, 0, 0, 1871, 1879, 3, 465, 232, 0, 1872, 1878, 8, 0, 0, 0, 1873, 1878, 3, 385, 192, 0, 1874, 1875, 3, 465, 232, 0, 1875, 1876, 3, 465, 232, 0, 1876, 1878, 1, 0, 0, 0, 1877, 1872, 1, 0, 0, 0, 1877, 1873, 1, 0, 0, 0, 1877, 1874, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1882, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1883, 3, 465, 232, 0, 1883, 1898, 1, 0, 0, 0, 1884, 1892, 3, 509, 254, 0, 1885, 1891, 8, 1, 0, 0, 1886, 1891, 3, 385, 192, 0, 1887, 1888, 3, 509, 254, 0, 1888, 1889, 3, 509, 254, 0, 1889, 1891, 1, 0, 0, 0, 1890, 1885, 1, 0, 0, 0, 1890, 1886, 1, 0, 0, 0, 1890, 1887, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1895, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1896, 3, 509, 254, 0, 1896, 1898, 1, 0, 0, 0, 1897, 1860, 1, 0, 0, 0, 1897, 1871, 1, 0, 0, 0, 1897, 1884, 1, 0, 0, 0, 1898, 388, 1, 0, 0, 0, 1899, 1900, 3, 395, 197, 0, 1900, 1904, 3, 479, 239, 0, 1901, 1903, 3, 459, 229, 0, 1902, 1901, 1, 0, 0, 0, 1903, 1906, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1909, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1910, 3, 431, 215, 0, 1908, 1910, 3, 409, 204, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1908, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1914, 3, 505, 252, 0, 1912, 1914, 3, 475, 237, 0, 1913, 1911, 1, 0, 0, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1916, 1, 0, 0, 0, 1915, 1917, 3, 457, 228, 0, 1916, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1916, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1976, 1, 0, 0, 0, 1920, 1923, 3, 395, 197, 0, 1921, 1924, 3, 431, 215, 0, 1922, 1924, 3, 409, 204, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1922, 1, 0, 0, 0, 1924, 1927, 1, 0, 0, 0, 1925, 1928, 3, 505, 252, 0, 1926, 1928, 3, 475, 237, 0, 1927, 1925, 1, 0, 0, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1931, 3, 457, 228, 0, 1930, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1976, 1, 0, 0, 0, 1934, 1935, 3, 393, 196, 0, 1935, 1939, 3, 479, 239, 0, 1936, 1938, 3, 457, 228, 0, 1937, 1936, 1, 0, 0, 0, 1938, 1941, 1, 0, 0, 0, 1939, 1937, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1942, 1, 0, 0, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 3, 409, 204, 0, 1943, 1946, 3, 505, 252, 0, 1944, 1946, 3, 475, 237, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1948, 1, 0, 0, 0, 1947, 1949, 3, 457, 228, 0, 1948, 1947, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1976, 1, 0, 0, 0, 1952, 1953, 3, 479, 239, 0, 1953, 1954, 3, 393, 196, 0, 1954, 1957, 3, 409, 204, 0, 1955, 1958, 3, 505, 252, 0, 1956, 1958, 3, 475, 237, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1960, 1, 0, 0, 0, 1959, 1961, 3, 457, 228, 0, 1960, 1959, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1976, 1, 0, 0, 0, 1964, 1965, 3, 393, 196, 0, 1965, 1968, 3, 409, 204, 0, 1966, 1969, 3, 505, 252, 0, 1967, 1969, 3, 475, 237, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1972, 3, 457, 228, 0, 1971, 1970, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1899, 1, 0, 0, 0, 1975, 1920, 1, 0, 0, 0, 1975, 1934, 1, 0, 0, 0, 1975, 1952, 1, 0, 0, 0, 1975, 1964, 1, 0, 0, 0, 1976, 390, 1, 0, 0, 0, 1977, 1979, 5, 48, 0, 0, 1978, 1980, 3, 455, 227, 0, 1979, 1978, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 392, 1, 0, 0, 0, 1983, 1985, 3, 457, 228, 0, 1984, 1983, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 394, 1, 0, 0, 0, 1988, 1989, 5, 48, 0, 0, 1989, 1991, 3, 447, 223, 0, 1990, 1992, 3, 459, 229, 0, 1991, 1990, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 396, 1, 0, 0, 0, 1995, 2003, 3, 511, 255, 0, 1996, 2002, 8, 2, 0, 0, 1997, 2002, 3, 385, 192, 0, 1998, 1999, 3, 511, 255, 0, 1999, 2000, 3, 511, 255, 0, 2000, 2002, 1, 0, 0, 0, 2001, 1996, 1, 0, 0, 0, 2001, 1997, 1, 0, 0, 0, 2001, 1998, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2006, 2007, 3, 511, 255, 0, 2007, 398, 1, 0, 0, 0, 2008, 2016, 3, 491, 245, 0, 2009, 2015, 8, 3, 0, 0, 2010, 2015, 3, 385, 192, 0, 2011, 2012, 3, 491, 245, 0, 2012, 2013, 3, 491, 245, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2009, 1, 0, 0, 0, 2014, 2010, 1, 0, 0, 0, 2014, 2011, 1, 0, 0, 0, 2015, 2018, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2019, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2020, 3, 513, 256, 0, 2020, 400, 1, 0, 0, 0, 2021, 2022, 7, 4, 0, 0, 2022, 402, 1, 0, 0, 0, 2023, 2024, 7, 5, 0, 0, 2024, 404, 1, 0, 0, 0, 2025, 2026, 7, 6, 0, 0, 2026, 406, 1, 0, 0, 0, 2027, 2028, 7, 7, 0, 0, 2028, 408, 1, 0, 0, 0, 2029, 2030, 7, 8, 0, 0, 2030, 410, 1, 0, 0, 0, 2031, 2032, 7, 9, 0, 0, 2032, 412, 1, 0, 0, 0, 2033, 2034, 7, 10, 0, 0, 2034, 414, 1, 0, 0, 0, 2035, 2036, 7, 11, 0, 0, 2036, 416, 1, 0, 0, 0, 2037, 2038, 7, 12, 0, 0, 2038, 418, 1, 0, 0, 0, 2039, 2040, 7, 13, 0, 0, 2040, 420, 1, 0, 0, 0, 2041, 2042, 7, 14, 0, 0, 2042, 422, 1, 0, 0, 0, 2043, 2044, 7, 15, 0, 0, 2044, 424, 1, 0, 0, 0, 2045, 2046, 7, 16, 0, 0, 2046, 426, 1, 0, 0, 0, 2047, 2048, 7, 17, 0, 0, 2048, 428, 1, 0, 0, 0, 2049, 2050, 7, 18, 0, 0, 2050, 430, 1, 0, 0, 0, 2051, 2052, 7, 19, 0, 0, 2052, 432, 1, 0, 0, 0, 2053, 2054, 7, 20, 0, 0, 2054, 434, 1, 0, 0, 0, 2055, 2056, 7, 21, 0, 0, 2056, 436, 1, 0, 0, 0, 2057, 2058, 7, 22, 0, 0, 2058, 438, 1, 0, 0, 0, 2059, 2060, 7, 23, 0, 0, 2060, 440, 1, 0, 0, 0, 2061, 2062, 7, 24, 0, 0, 2062, 442, 1, 0, 0, 0, 2063, 2064, 7, 25, 0, 0, 2064, 444, 1, 0, 0, 0, 2065, 2066, 7, 26, 0, 0, 2066, 446, 1, 0, 0, 0, 2067, 2068, 7, 27, 0, 0, 2068, 448, 1, 0, 0, 0, 2069, 2070, 7, 28, 0, 0, 2070, 450, 1, 0, 0, 0, 2071, 2072, 7, 29, 0, 0, 2072, 452, 1, 0, 0, 0, 2073, 2074, 7, 30, 0, 0, 2074, 454, 1, 0, 0, 0, 2075, 2076, 7, 31, 0, 0, 2076, 456, 1, 0, 0, 0, 2077, 2078, 7, 32, 0, 0, 2078, 458, 1, 0, 0, 0, 2079, 2080, 7, 33, 0, 0, 2080, 460, 1, 0, 0, 0, 2081, 2082, 5, 45, 0, 0, 2082, 2083, 5, 62, 0, 0, 2083, 462, 1, 0, 0, 0, 2084, 2085, 5, 42, 0, 0, 2085, 464, 1, 0, 0, 0, 2086, 2087, 5, 96, 0, 0, 2087, 466, 1, 0, 0, 0, 2088, 2089, 5, 92, 0, 0, 2089, 468, 1, 0, 0, 0, 2090, 2091, 5, 58, 0, 0, 2091, 470, 1, 0, 0, 0, 2092, 2093, 5, 44, 0, 0, 2093, 472, 1, 0, 0, 0, 2094, 2095, 5, 124, 0, 0, 2095, 2096, 5, 124, 0, 0, 2096, 474, 1, 0, 0, 0, 2097, 2098, 5, 45, 0, 0, 2098, 476, 1, 0, 0, 0, 2099, 2100, 5, 36, 0, 0, 2100, 478, 1, 0, 0, 0, 2101, 2102, 5, 46, 0, 0, 2102, 480, 1, 0, 0, 0, 2103, 2104, 5, 61, 0, 0, 2104, 2105, 5, 61, 0, 0, 2105, 482, 1, 0, 0, 0, 2106, 2107, 5, 61, 0, 0, 2107, 484, 1, 0, 0, 0, 2108, 2109, 5, 62, 0, 0, 2109, 2110, 5, 61, 0, 0, 2110, 486, 1, 0, 0, 0, 2111, 2112, 5, 62, 0, 0, 2112, 488, 1, 0, 0, 0, 2113, 2114, 5, 35, 0, 0, 2114, 490, 1, 0, 0, 0, 2115, 2116, 5, 123, 0, 0, 2116, 492, 1, 0, 0, 0, 2117, 2118, 5, 91, 0, 0, 2118, 494, 1, 0, 0, 0, 2119, 2120, 5, 40, 0, 0, 2120, 496, 1, 0, 0, 0, 2121, 2122, 5, 60, 0, 0, 2122, 2123, 5, 61, 0, 0, 2123, 498, 1, 0, 0, 0, 2124, 2125, 5, 60, 0, 0, 2125, 500, 1, 0, 0, 0, 2126, 2127, 5, 33, 0, 0, 2127, 2131, 5, 61, 0, 0, 2128, 2129, 5, 60, 0, 0, 2129, 2131, 5, 62, 0, 0, 2130, 2126, 1, 0, 0, 0, 2130, 2128, 1, 0, 0, 0, 2131, 502, 1, 0, 0, 0, 2132, 2133, 5, 37, 0, 0, 2133, 504, 1, 0, 0, 0, 2134, 2135, 5, 43, 0, 0, 2135, 506, 1, 0, 0, 0, 2136, 2137, 5, 63, 0, 0, 2137, 508, 1, 0, 0, 0, 2138, 2139, 5, 34, 0, 0, 2139, 510, 1, 0, 0, 0, 2140, 2141, 5, 39, 0, 0, 2141, 512, 1, 0, 0, 0, 2142, 2143, 5, 125, 0, 0, 2143, 514, 1, 0, 0, 0, 2144, 2145, 5, 93, 0, 0, 2145, 516, 1, 0, 0, 0, 2146, 2147, 5, 41, 0, 0, 2147, 518, 1, 0, 0, 0, 2148, 2149, 5, 59, 0, 0, 2149, 520, 1, 0, 0, 0, 2150, 2151, 5, 47, 0, 0, 2151, 522, 1, 0, 0, 0, 2152, 2153, 5, 95, 0, 0, 2153, 524, 1, 0, 0, 0, 2154, 2155, 5, 47, 0, 0, 2155, 2156, 5, 42, 0, 0, 2156, 2160, 1, 0, 0, 0, 2157, 2159, 9, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2164, 5, 42, 0, 0, 2164, 2165, 5, 47, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2167, 6, 262, 0, 0, 2167, 526, 1, 0, 0, 0, 2168, 2169, 5, 45, 0, 0, 2169, 2170, 5, 45, 0, 0, 2170, 2174, 1, 0, 0, 0, 2171, 2173, 8, 34, 0, 0, 2172, 2171, 1, 0, 0, 0, 2173, 2176, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2177, 2179, 7, 35, 0, 0, 2178, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2181, 6, 263, 0, 0, 2181, 528, 1, 0, 0, 0, 2182, 2183, 7, 36, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 6, 264, 1, 0, 2185, 530, 1, 0, 0, 0, 39, 0, 593, 1098, 1812, 1855, 1860, 1866, 1868, 1877, 1879, 1890, 1892, 1897, 1904, 1909, 1913, 1918, 1923, 1927, 1932, 1939, 1945, 1950, 1957, 1962, 1968, 1973, 1975, 1981, 1986, 1993, 2001, 2003, 2014, 2016, 2130, 2160, 2174, 2178, 2, 6, 0, 0, 0, 1, 0] \ No newline at end of file diff --git a/posthog/hogql/grammar/HogQLLexer.py b/posthog/hogql/grammar/HogQLLexer.py index 1272da8988e1b..a88af8c0418a7 100644 --- a/posthog/hogql/grammar/HogQLLexer.py +++ b/posthog/hogql/grammar/HogQLLexer.py @@ -193,7 +193,7 @@ def serializedATN(): 1,230,1,230,1,230,1,231,1,231,1,232,1,232,1,233,1,233,1,234,1,234, 1,235,1,235,1,236,1,236,1,236,1,237,1,237,1,238,1,238,1,239,1,239, 1,240,1,240,1,240,1,241,1,241,1,242,1,242,1,242,1,243,1,243,1,244, - 1,244,1,245,1,245,1,246,1,246,1,247,1,247,1,247,1,248,1,248,1,249, + 1,244,1,245,1,245,1,246,1,246,1,247,1,247,1,248,1,248,1,248,1,249, 1,249,1,250,1,250,1,250,1,250,3,250,2131,8,250,1,251,1,251,1,252, 1,252,1,253,1,253,1,254,1,254,1,255,1,255,1,256,1,256,1,257,1,257, 1,258,1,258,1,259,1,259,1,260,1,260,1,261,1,261,1,262,1,262,1,262, @@ -350,7 +350,7 @@ def serializedATN(): 1,0,0,0,469,2090,1,0,0,0,471,2092,1,0,0,0,473,2094,1,0,0,0,475,2097, 1,0,0,0,477,2099,1,0,0,0,479,2101,1,0,0,0,481,2103,1,0,0,0,483,2106, 1,0,0,0,485,2108,1,0,0,0,487,2111,1,0,0,0,489,2113,1,0,0,0,491,2115, - 1,0,0,0,493,2117,1,0,0,0,495,2119,1,0,0,0,497,2122,1,0,0,0,499,2124, + 1,0,0,0,493,2117,1,0,0,0,495,2119,1,0,0,0,497,2121,1,0,0,0,499,2124, 1,0,0,0,501,2130,1,0,0,0,503,2132,1,0,0,0,505,2134,1,0,0,0,507,2136, 1,0,0,0,509,2138,1,0,0,0,511,2140,1,0,0,0,513,2142,1,0,0,0,515,2144, 1,0,0,0,517,2146,1,0,0,0,519,2148,1,0,0,0,521,2150,1,0,0,0,523,2152, @@ -860,9 +860,9 @@ def serializedATN(): 0,0,2107,484,1,0,0,0,2108,2109,5,62,0,0,2109,2110,5,61,0,0,2110, 486,1,0,0,0,2111,2112,5,62,0,0,2112,488,1,0,0,0,2113,2114,5,35,0, 0,2114,490,1,0,0,0,2115,2116,5,123,0,0,2116,492,1,0,0,0,2117,2118, - 5,91,0,0,2118,494,1,0,0,0,2119,2120,5,60,0,0,2120,2121,5,61,0,0, - 2121,496,1,0,0,0,2122,2123,5,40,0,0,2123,498,1,0,0,0,2124,2125,5, - 60,0,0,2125,500,1,0,0,0,2126,2127,5,33,0,0,2127,2131,5,61,0,0,2128, + 5,91,0,0,2118,494,1,0,0,0,2119,2120,5,40,0,0,2120,496,1,0,0,0,2121, + 2122,5,60,0,0,2122,2123,5,61,0,0,2123,498,1,0,0,0,2124,2125,5,60, + 0,0,2125,500,1,0,0,0,2126,2127,5,33,0,0,2127,2131,5,61,0,0,2128, 2129,5,60,0,0,2129,2131,5,62,0,0,2130,2126,1,0,0,0,2130,2128,1,0, 0,0,2131,502,1,0,0,0,2132,2133,5,37,0,0,2133,504,1,0,0,0,2134,2135, 5,43,0,0,2135,506,1,0,0,0,2136,2137,5,63,0,0,2137,508,1,0,0,0,2138, @@ -1103,13 +1103,13 @@ class HogQLLexer(Lexer): DOT = 210 EQ_DOUBLE = 211 EQ_SINGLE = 212 - GE = 213 + GT_EQ = 213 GT = 214 HASH = 215 LBRACE = 216 LBRACKET = 217 - LE = 218 - LPAREN = 219 + LPAREN = 218 + LT_EQ = 219 LT = 220 NOT_EQ = 221 PERCENT = 222 @@ -1134,7 +1134,7 @@ class HogQLLexer(Lexer): literalNames = [ "", "'false'", "'true'", "'->'", "'*'", "'`'", "'\\'", "':'", "','", "'||'", "'-'", "'$'", "'.'", "'=='", "'='", "'>='", "'>'", "'#'", - "'{'", "'['", "'<='", "'('", "'<'", "'%'", "'+'", "'?'", "'\"'", + "'{'", "'['", "'('", "'<='", "'<'", "'%'", "'+'", "'?'", "'\"'", "'''", "'}'", "']'", "')'", "';'", "'/'", "'_'" ] symbolicNames = [ "", @@ -1171,8 +1171,8 @@ class HogQLLexer(Lexer): "DECIMAL_LITERAL", "HEXADECIMAL_LITERAL", "STRING_LITERAL", "PLACEHOLDER", "ARROW", "ASTERISK", "BACKQUOTE", "BACKSLASH", "COLON", "COMMA", "CONCAT", "DASH", "DOLLAR", "DOT", "EQ_DOUBLE", - "EQ_SINGLE", "GE", "GT", "HASH", "LBRACE", "LBRACKET", "LE", - "LPAREN", "LT", "NOT_EQ", "PERCENT", "PLUS", "QUERY", "QUOTE_DOUBLE", + "EQ_SINGLE", "GT_EQ", "GT", "HASH", "LBRACE", "LBRACKET", "LPAREN", + "LT_EQ", "LT", "NOT_EQ", "PERCENT", "PLUS", "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", "RBRACE", "RBRACKET", "RPAREN", "SEMICOLON", "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", "WHITESPACE" ] @@ -1216,9 +1216,9 @@ class HogQLLexer(Lexer): "W", "X", "Y", "Z", "LETTER", "OCT_DIGIT", "DEC_DIGIT", "HEX_DIGIT", "ARROW", "ASTERISK", "BACKQUOTE", "BACKSLASH", "COLON", "COMMA", "CONCAT", "DASH", "DOLLAR", "DOT", "EQ_DOUBLE", - "EQ_SINGLE", "GE", "GT", "HASH", "LBRACE", "LBRACKET", - "LE", "LPAREN", "LT", "NOT_EQ", "PERCENT", "PLUS", "QUERY", - "QUOTE_DOUBLE", "QUOTE_SINGLE", "RBRACE", "RBRACKET", + "EQ_SINGLE", "GT_EQ", "GT", "HASH", "LBRACE", "LBRACKET", + "LPAREN", "LT_EQ", "LT", "NOT_EQ", "PERCENT", "PLUS", + "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", "RBRACE", "RBRACKET", "RPAREN", "SEMICOLON", "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", "WHITESPACE" ] diff --git a/posthog/hogql/grammar/HogQLLexer.tokens b/posthog/hogql/grammar/HogQLLexer.tokens index d78d98b326afb..a8a2b718a1a0b 100644 --- a/posthog/hogql/grammar/HogQLLexer.tokens +++ b/posthog/hogql/grammar/HogQLLexer.tokens @@ -210,13 +210,13 @@ DOLLAR=209 DOT=210 EQ_DOUBLE=211 EQ_SINGLE=212 -GE=213 +GT_EQ=213 GT=214 HASH=215 LBRACE=216 LBRACKET=217 -LE=218 -LPAREN=219 +LPAREN=218 +LT_EQ=219 LT=220 NOT_EQ=221 PERCENT=222 @@ -252,8 +252,8 @@ WHITESPACE=235 '#'=215 '{'=216 '['=217 -'<='=218 -'('=219 +'('=218 +'<='=219 '<'=220 '%'=222 '+'=223 diff --git a/posthog/hogql/grammar/HogQLParser.g4 b/posthog/hogql/grammar/HogQLParser.g4 index d8f9b2c1a8660..94ab9b48ca0ef 100644 --- a/posthog/hogql/grammar/HogQLParser.g4 +++ b/posthog/hogql/grammar/HogQLParser.g4 @@ -127,9 +127,9 @@ columnExpr | left=columnExpr ( operator=EQ_DOUBLE // equals | operator=EQ_SINGLE // equals | operator=NOT_EQ // notEquals - | operator=LE // lessOrEquals - | operator=GE // greaterOrEquals + | operator=LT_EQ // lessOrEquals | operator=LT // less + | operator=GT_EQ // greaterOrEquals | operator=GT // greater | operator=NOT? IN COHORT? // in, notIn; cohort() | operator=NOT? (LIKE | ILIKE) // like, notLike, ilike, notILike diff --git a/posthog/hogql/grammar/HogQLParser.interp b/posthog/hogql/grammar/HogQLParser.interp index bc8e3ff9ac886..46f630dd0809f 100644 --- a/posthog/hogql/grammar/HogQLParser.interp +++ b/posthog/hogql/grammar/HogQLParser.interp @@ -217,8 +217,8 @@ null '#' '{' '[' -'<=' '(' +'<=' '<' null '%' @@ -450,13 +450,13 @@ DOLLAR DOT EQ_DOUBLE EQ_SINGLE -GE +GT_EQ GT HASH LBRACE LBRACKET -LE LPAREN +LT_EQ LT NOT_EQ PERCENT @@ -538,4 +538,4 @@ enumValue atn: -[4, 1, 235, 916, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 1, 0, 1, 0, 3, 0, 123, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 131, 8, 1, 10, 1, 12, 1, 134, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 141, 8, 2, 1, 3, 3, 3, 144, 8, 3, 1, 3, 1, 3, 3, 3, 148, 8, 3, 1, 3, 3, 3, 151, 8, 3, 1, 3, 1, 3, 3, 3, 155, 8, 3, 1, 3, 3, 3, 158, 8, 3, 1, 3, 3, 3, 161, 8, 3, 1, 3, 3, 3, 164, 8, 3, 1, 3, 3, 3, 167, 8, 3, 1, 3, 1, 3, 3, 3, 171, 8, 3, 1, 3, 1, 3, 3, 3, 175, 8, 3, 1, 3, 3, 3, 178, 8, 3, 1, 3, 3, 3, 181, 8, 3, 1, 3, 3, 3, 184, 8, 3, 1, 3, 1, 3, 3, 3, 188, 8, 3, 1, 3, 3, 3, 191, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 200, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 3, 7, 206, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 225, 8, 8, 10, 8, 12, 8, 228, 9, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 244, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 261, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 267, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 273, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 284, 8, 15, 3, 15, 286, 8, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 3, 18, 297, 8, 18, 1, 18, 3, 18, 300, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 306, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 314, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 320, 8, 18, 10, 18, 12, 18, 323, 9, 18, 1, 19, 3, 19, 326, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 331, 8, 19, 1, 19, 3, 19, 334, 8, 19, 1, 19, 3, 19, 337, 8, 19, 1, 19, 1, 19, 3, 19, 341, 8, 19, 1, 19, 1, 19, 3, 19, 345, 8, 19, 1, 19, 3, 19, 348, 8, 19, 3, 19, 350, 8, 19, 1, 19, 3, 19, 353, 8, 19, 1, 19, 1, 19, 3, 19, 357, 8, 19, 1, 19, 1, 19, 3, 19, 361, 8, 19, 1, 19, 3, 19, 364, 8, 19, 3, 19, 366, 8, 19, 3, 19, 368, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 373, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 384, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 390, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 395, 8, 23, 10, 23, 12, 23, 398, 9, 23, 1, 24, 1, 24, 3, 24, 402, 8, 24, 1, 24, 1, 24, 3, 24, 406, 8, 24, 1, 24, 1, 24, 3, 24, 410, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 415, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 420, 8, 26, 10, 26, 12, 26, 423, 9, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 430, 8, 28, 1, 28, 3, 28, 433, 8, 28, 1, 28, 3, 28, 436, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 455, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 469, 8, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 483, 8, 35, 10, 35, 12, 35, 486, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 495, 8, 35, 10, 35, 12, 35, 498, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 507, 8, 35, 10, 35, 12, 35, 510, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 517, 8, 35, 1, 35, 1, 35, 3, 35, 521, 8, 35, 1, 36, 1, 36, 1, 36, 5, 36, 526, 8, 36, 10, 36, 12, 36, 529, 9, 36, 1, 37, 1, 37, 1, 37, 3, 37, 534, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 4, 37, 541, 8, 37, 11, 37, 12, 37, 542, 1, 37, 1, 37, 3, 37, 547, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 578, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 595, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 607, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 617, 8, 37, 1, 37, 3, 37, 620, 8, 37, 1, 37, 1, 37, 3, 37, 624, 8, 37, 1, 37, 3, 37, 627, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 639, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 656, 8, 37, 1, 37, 1, 37, 3, 37, 660, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 666, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 673, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 685, 8, 37, 1, 37, 1, 37, 3, 37, 689, 8, 37, 1, 37, 3, 37, 692, 8, 37, 1, 37, 3, 37, 695, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 706, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 733, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 742, 8, 37, 5, 37, 744, 8, 37, 10, 37, 12, 37, 747, 9, 37, 1, 38, 1, 38, 1, 38, 5, 38, 752, 8, 38, 10, 38, 12, 38, 755, 9, 38, 1, 39, 1, 39, 3, 39, 759, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 765, 8, 40, 10, 40, 12, 40, 768, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 775, 8, 40, 10, 40, 12, 40, 778, 9, 40, 3, 40, 780, 8, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 788, 8, 41, 10, 41, 12, 41, 791, 9, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 803, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 809, 8, 43, 1, 43, 3, 43, 812, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 817, 8, 44, 10, 44, 12, 44, 820, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 829, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 835, 8, 45, 5, 45, 837, 8, 45, 10, 45, 12, 45, 840, 9, 45, 1, 46, 1, 46, 1, 46, 3, 46, 845, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 3, 47, 852, 8, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 5, 48, 859, 8, 48, 10, 48, 12, 48, 862, 9, 48, 1, 49, 1, 49, 1, 49, 3, 49, 867, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 877, 8, 51, 3, 51, 879, 8, 51, 1, 52, 3, 52, 882, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 890, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 895, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 905, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 910, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 0, 3, 36, 74, 90, 60, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 0, 16, 2, 0, 32, 32, 141, 141, 2, 0, 84, 84, 96, 96, 3, 0, 4, 4, 8, 8, 12, 12, 4, 0, 4, 4, 7, 8, 12, 12, 147, 147, 2, 0, 96, 96, 140, 140, 2, 0, 4, 4, 8, 8, 2, 0, 11, 11, 42, 43, 2, 0, 62, 62, 93, 93, 2, 0, 133, 133, 143, 143, 3, 0, 17, 17, 95, 95, 170, 170, 2, 0, 79, 79, 98, 98, 1, 0, 196, 197, 2, 0, 208, 208, 223, 223, 8, 0, 37, 37, 76, 76, 108, 108, 110, 110, 132, 132, 145, 145, 185, 185, 190, 190, 13, 0, 2, 24, 26, 36, 38, 75, 77, 81, 83, 107, 109, 109, 111, 112, 114, 115, 117, 130, 133, 144, 146, 184, 186, 189, 191, 192, 4, 0, 36, 36, 62, 62, 77, 77, 91, 91, 1029, 0, 122, 1, 0, 0, 0, 2, 126, 1, 0, 0, 0, 4, 140, 1, 0, 0, 0, 6, 143, 1, 0, 0, 0, 8, 192, 1, 0, 0, 0, 10, 195, 1, 0, 0, 0, 12, 201, 1, 0, 0, 0, 14, 205, 1, 0, 0, 0, 16, 211, 1, 0, 0, 0, 18, 229, 1, 0, 0, 0, 20, 232, 1, 0, 0, 0, 22, 235, 1, 0, 0, 0, 24, 245, 1, 0, 0, 0, 26, 248, 1, 0, 0, 0, 28, 252, 1, 0, 0, 0, 30, 285, 1, 0, 0, 0, 32, 287, 1, 0, 0, 0, 34, 290, 1, 0, 0, 0, 36, 305, 1, 0, 0, 0, 38, 367, 1, 0, 0, 0, 40, 372, 1, 0, 0, 0, 42, 383, 1, 0, 0, 0, 44, 385, 1, 0, 0, 0, 46, 391, 1, 0, 0, 0, 48, 399, 1, 0, 0, 0, 50, 411, 1, 0, 0, 0, 52, 416, 1, 0, 0, 0, 54, 424, 1, 0, 0, 0, 56, 429, 1, 0, 0, 0, 58, 437, 1, 0, 0, 0, 60, 441, 1, 0, 0, 0, 62, 445, 1, 0, 0, 0, 64, 454, 1, 0, 0, 0, 66, 468, 1, 0, 0, 0, 68, 470, 1, 0, 0, 0, 70, 520, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 659, 1, 0, 0, 0, 76, 748, 1, 0, 0, 0, 78, 758, 1, 0, 0, 0, 80, 779, 1, 0, 0, 0, 82, 784, 1, 0, 0, 0, 84, 802, 1, 0, 0, 0, 86, 811, 1, 0, 0, 0, 88, 813, 1, 0, 0, 0, 90, 828, 1, 0, 0, 0, 92, 841, 1, 0, 0, 0, 94, 851, 1, 0, 0, 0, 96, 855, 1, 0, 0, 0, 98, 866, 1, 0, 0, 0, 100, 868, 1, 0, 0, 0, 102, 878, 1, 0, 0, 0, 104, 881, 1, 0, 0, 0, 106, 894, 1, 0, 0, 0, 108, 896, 1, 0, 0, 0, 110, 898, 1, 0, 0, 0, 112, 900, 1, 0, 0, 0, 114, 904, 1, 0, 0, 0, 116, 909, 1, 0, 0, 0, 118, 911, 1, 0, 0, 0, 120, 123, 3, 2, 1, 0, 121, 123, 3, 6, 3, 0, 122, 120, 1, 0, 0, 0, 122, 121, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 124, 125, 5, 0, 0, 1, 125, 1, 1, 0, 0, 0, 126, 132, 3, 4, 2, 0, 127, 128, 5, 176, 0, 0, 128, 129, 5, 4, 0, 0, 129, 131, 3, 4, 2, 0, 130, 127, 1, 0, 0, 0, 131, 134, 1, 0, 0, 0, 132, 130, 1, 0, 0, 0, 132, 133, 1, 0, 0, 0, 133, 3, 1, 0, 0, 0, 134, 132, 1, 0, 0, 0, 135, 141, 3, 6, 3, 0, 136, 137, 5, 219, 0, 0, 137, 138, 3, 2, 1, 0, 138, 139, 5, 229, 0, 0, 139, 141, 1, 0, 0, 0, 140, 135, 1, 0, 0, 0, 140, 136, 1, 0, 0, 0, 141, 5, 1, 0, 0, 0, 142, 144, 3, 8, 4, 0, 143, 142, 1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 145, 1, 0, 0, 0, 145, 147, 5, 146, 0, 0, 146, 148, 5, 49, 0, 0, 147, 146, 1, 0, 0, 0, 147, 148, 1, 0, 0, 0, 148, 150, 1, 0, 0, 0, 149, 151, 3, 10, 5, 0, 150, 149, 1, 0, 0, 0, 150, 151, 1, 0, 0, 0, 151, 152, 1, 0, 0, 0, 152, 154, 3, 72, 36, 0, 153, 155, 3, 12, 6, 0, 154, 153, 1, 0, 0, 0, 154, 155, 1, 0, 0, 0, 155, 157, 1, 0, 0, 0, 156, 158, 3, 14, 7, 0, 157, 156, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 160, 1, 0, 0, 0, 159, 161, 3, 18, 9, 0, 160, 159, 1, 0, 0, 0, 160, 161, 1, 0, 0, 0, 161, 163, 1, 0, 0, 0, 162, 164, 3, 20, 10, 0, 163, 162, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 166, 1, 0, 0, 0, 165, 167, 3, 22, 11, 0, 166, 165, 1, 0, 0, 0, 166, 167, 1, 0, 0, 0, 167, 170, 1, 0, 0, 0, 168, 169, 5, 189, 0, 0, 169, 171, 7, 0, 0, 0, 170, 168, 1, 0, 0, 0, 170, 171, 1, 0, 0, 0, 171, 174, 1, 0, 0, 0, 172, 173, 5, 189, 0, 0, 173, 175, 5, 169, 0, 0, 174, 172, 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 177, 1, 0, 0, 0, 176, 178, 3, 24, 12, 0, 177, 176, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 180, 1, 0, 0, 0, 179, 181, 3, 16, 8, 0, 180, 179, 1, 0, 0, 0, 180, 181, 1, 0, 0, 0, 181, 183, 1, 0, 0, 0, 182, 184, 3, 26, 13, 0, 183, 182, 1, 0, 0, 0, 183, 184, 1, 0, 0, 0, 184, 187, 1, 0, 0, 0, 185, 188, 3, 30, 15, 0, 186, 188, 3, 32, 16, 0, 187, 185, 1, 0, 0, 0, 187, 186, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 190, 1, 0, 0, 0, 189, 191, 3, 34, 17, 0, 190, 189, 1, 0, 0, 0, 190, 191, 1, 0, 0, 0, 191, 7, 1, 0, 0, 0, 192, 193, 5, 189, 0, 0, 193, 194, 3, 82, 41, 0, 194, 9, 1, 0, 0, 0, 195, 196, 5, 168, 0, 0, 196, 199, 5, 197, 0, 0, 197, 198, 5, 189, 0, 0, 198, 200, 5, 164, 0, 0, 199, 197, 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 11, 1, 0, 0, 0, 201, 202, 5, 68, 0, 0, 202, 203, 3, 36, 18, 0, 203, 13, 1, 0, 0, 0, 204, 206, 7, 1, 0, 0, 205, 204, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 208, 5, 9, 0, 0, 208, 209, 5, 90, 0, 0, 209, 210, 3, 72, 36, 0, 210, 15, 1, 0, 0, 0, 211, 212, 5, 188, 0, 0, 212, 213, 3, 116, 58, 0, 213, 214, 5, 10, 0, 0, 214, 215, 5, 219, 0, 0, 215, 216, 3, 56, 28, 0, 216, 226, 5, 229, 0, 0, 217, 218, 5, 206, 0, 0, 218, 219, 3, 116, 58, 0, 219, 220, 5, 10, 0, 0, 220, 221, 5, 219, 0, 0, 221, 222, 3, 56, 28, 0, 222, 223, 5, 229, 0, 0, 223, 225, 1, 0, 0, 0, 224, 217, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 17, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 5, 129, 0, 0, 230, 231, 3, 74, 37, 0, 231, 19, 1, 0, 0, 0, 232, 233, 5, 187, 0, 0, 233, 234, 3, 74, 37, 0, 234, 21, 1, 0, 0, 0, 235, 236, 5, 73, 0, 0, 236, 243, 5, 18, 0, 0, 237, 238, 7, 0, 0, 0, 238, 239, 5, 219, 0, 0, 239, 240, 3, 72, 36, 0, 240, 241, 5, 229, 0, 0, 241, 244, 1, 0, 0, 0, 242, 244, 3, 72, 36, 0, 243, 237, 1, 0, 0, 0, 243, 242, 1, 0, 0, 0, 244, 23, 1, 0, 0, 0, 245, 246, 5, 74, 0, 0, 246, 247, 3, 74, 37, 0, 247, 25, 1, 0, 0, 0, 248, 249, 5, 122, 0, 0, 249, 250, 5, 18, 0, 0, 250, 251, 3, 46, 23, 0, 251, 27, 1, 0, 0, 0, 252, 253, 5, 122, 0, 0, 253, 254, 5, 18, 0, 0, 254, 255, 3, 72, 36, 0, 255, 29, 1, 0, 0, 0, 256, 257, 5, 99, 0, 0, 257, 260, 3, 74, 37, 0, 258, 259, 5, 206, 0, 0, 259, 261, 3, 74, 37, 0, 260, 258, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 266, 1, 0, 0, 0, 262, 263, 5, 189, 0, 0, 263, 267, 5, 164, 0, 0, 264, 265, 5, 18, 0, 0, 265, 267, 3, 72, 36, 0, 266, 262, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 286, 1, 0, 0, 0, 268, 269, 5, 99, 0, 0, 269, 272, 3, 74, 37, 0, 270, 271, 5, 189, 0, 0, 271, 273, 5, 164, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 5, 118, 0, 0, 275, 276, 3, 74, 37, 0, 276, 286, 1, 0, 0, 0, 277, 278, 5, 99, 0, 0, 278, 279, 3, 74, 37, 0, 279, 280, 5, 118, 0, 0, 280, 283, 3, 74, 37, 0, 281, 282, 5, 18, 0, 0, 282, 284, 3, 72, 36, 0, 283, 281, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 286, 1, 0, 0, 0, 285, 256, 1, 0, 0, 0, 285, 268, 1, 0, 0, 0, 285, 277, 1, 0, 0, 0, 286, 31, 1, 0, 0, 0, 287, 288, 5, 118, 0, 0, 288, 289, 3, 74, 37, 0, 289, 33, 1, 0, 0, 0, 290, 291, 5, 150, 0, 0, 291, 292, 3, 52, 26, 0, 292, 35, 1, 0, 0, 0, 293, 294, 6, 18, -1, 0, 294, 296, 3, 90, 45, 0, 295, 297, 5, 61, 0, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 44, 22, 0, 299, 298, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 306, 1, 0, 0, 0, 301, 302, 5, 219, 0, 0, 302, 303, 3, 36, 18, 0, 303, 304, 5, 229, 0, 0, 304, 306, 1, 0, 0, 0, 305, 293, 1, 0, 0, 0, 305, 301, 1, 0, 0, 0, 306, 321, 1, 0, 0, 0, 307, 308, 10, 3, 0, 0, 308, 309, 3, 40, 20, 0, 309, 310, 3, 36, 18, 4, 310, 320, 1, 0, 0, 0, 311, 313, 10, 4, 0, 0, 312, 314, 3, 38, 19, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 5, 90, 0, 0, 316, 317, 3, 36, 18, 0, 317, 318, 3, 42, 21, 0, 318, 320, 1, 0, 0, 0, 319, 307, 1, 0, 0, 0, 319, 311, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 37, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 326, 7, 2, 0, 0, 325, 324, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 334, 5, 84, 0, 0, 328, 330, 5, 84, 0, 0, 329, 331, 7, 2, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 334, 7, 2, 0, 0, 333, 325, 1, 0, 0, 0, 333, 328, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 368, 1, 0, 0, 0, 335, 337, 7, 3, 0, 0, 336, 335, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 7, 4, 0, 0, 339, 341, 5, 123, 0, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 350, 1, 0, 0, 0, 342, 344, 7, 4, 0, 0, 343, 345, 5, 123, 0, 0, 344, 343, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 347, 1, 0, 0, 0, 346, 348, 7, 3, 0, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 350, 1, 0, 0, 0, 349, 336, 1, 0, 0, 0, 349, 342, 1, 0, 0, 0, 350, 368, 1, 0, 0, 0, 351, 353, 7, 5, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 356, 5, 69, 0, 0, 355, 357, 5, 123, 0, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 366, 1, 0, 0, 0, 358, 360, 5, 69, 0, 0, 359, 361, 5, 123, 0, 0, 360, 359, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 1, 0, 0, 0, 362, 364, 7, 5, 0, 0, 363, 362, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 352, 1, 0, 0, 0, 365, 358, 1, 0, 0, 0, 366, 368, 1, 0, 0, 0, 367, 333, 1, 0, 0, 0, 367, 349, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 39, 1, 0, 0, 0, 369, 370, 5, 31, 0, 0, 370, 373, 5, 90, 0, 0, 371, 373, 5, 206, 0, 0, 372, 369, 1, 0, 0, 0, 372, 371, 1, 0, 0, 0, 373, 41, 1, 0, 0, 0, 374, 375, 5, 119, 0, 0, 375, 384, 3, 72, 36, 0, 376, 377, 5, 179, 0, 0, 377, 378, 5, 219, 0, 0, 378, 379, 3, 72, 36, 0, 379, 380, 5, 229, 0, 0, 380, 384, 1, 0, 0, 0, 381, 382, 5, 179, 0, 0, 382, 384, 3, 72, 36, 0, 383, 374, 1, 0, 0, 0, 383, 376, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 43, 1, 0, 0, 0, 385, 386, 5, 144, 0, 0, 386, 389, 3, 50, 25, 0, 387, 388, 5, 118, 0, 0, 388, 390, 3, 50, 25, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 45, 1, 0, 0, 0, 391, 396, 3, 48, 24, 0, 392, 393, 5, 206, 0, 0, 393, 395, 3, 48, 24, 0, 394, 392, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 47, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 401, 3, 74, 37, 0, 400, 402, 7, 6, 0, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 404, 5, 117, 0, 0, 404, 406, 7, 7, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 408, 5, 26, 0, 0, 408, 410, 5, 199, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 49, 1, 0, 0, 0, 411, 414, 3, 104, 52, 0, 412, 413, 5, 231, 0, 0, 413, 415, 3, 104, 52, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 51, 1, 0, 0, 0, 416, 421, 3, 54, 27, 0, 417, 418, 5, 206, 0, 0, 418, 420, 3, 54, 27, 0, 419, 417, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 53, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 425, 3, 116, 58, 0, 425, 426, 5, 212, 0, 0, 426, 427, 3, 106, 53, 0, 427, 55, 1, 0, 0, 0, 428, 430, 3, 58, 29, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 432, 1, 0, 0, 0, 431, 433, 3, 60, 30, 0, 432, 431, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 435, 1, 0, 0, 0, 434, 436, 3, 62, 31, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 57, 1, 0, 0, 0, 437, 438, 5, 126, 0, 0, 438, 439, 5, 18, 0, 0, 439, 440, 3, 72, 36, 0, 440, 59, 1, 0, 0, 0, 441, 442, 5, 122, 0, 0, 442, 443, 5, 18, 0, 0, 443, 444, 3, 46, 23, 0, 444, 61, 1, 0, 0, 0, 445, 446, 7, 8, 0, 0, 446, 447, 3, 64, 32, 0, 447, 63, 1, 0, 0, 0, 448, 455, 3, 66, 33, 0, 449, 450, 5, 16, 0, 0, 450, 451, 3, 66, 33, 0, 451, 452, 5, 6, 0, 0, 452, 453, 3, 66, 33, 0, 453, 455, 1, 0, 0, 0, 454, 448, 1, 0, 0, 0, 454, 449, 1, 0, 0, 0, 455, 65, 1, 0, 0, 0, 456, 457, 5, 33, 0, 0, 457, 469, 5, 142, 0, 0, 458, 459, 5, 175, 0, 0, 459, 469, 5, 128, 0, 0, 460, 461, 5, 175, 0, 0, 461, 469, 5, 64, 0, 0, 462, 463, 3, 104, 52, 0, 463, 464, 5, 128, 0, 0, 464, 469, 1, 0, 0, 0, 465, 466, 3, 104, 52, 0, 466, 467, 5, 64, 0, 0, 467, 469, 1, 0, 0, 0, 468, 456, 1, 0, 0, 0, 468, 458, 1, 0, 0, 0, 468, 460, 1, 0, 0, 0, 468, 462, 1, 0, 0, 0, 468, 465, 1, 0, 0, 0, 469, 67, 1, 0, 0, 0, 470, 471, 3, 74, 37, 0, 471, 472, 5, 0, 0, 1, 472, 69, 1, 0, 0, 0, 473, 521, 3, 116, 58, 0, 474, 475, 3, 116, 58, 0, 475, 476, 5, 219, 0, 0, 476, 477, 3, 116, 58, 0, 477, 484, 3, 70, 35, 0, 478, 479, 5, 206, 0, 0, 479, 480, 3, 116, 58, 0, 480, 481, 3, 70, 35, 0, 481, 483, 1, 0, 0, 0, 482, 478, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 487, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 488, 5, 229, 0, 0, 488, 521, 1, 0, 0, 0, 489, 490, 3, 116, 58, 0, 490, 491, 5, 219, 0, 0, 491, 496, 3, 118, 59, 0, 492, 493, 5, 206, 0, 0, 493, 495, 3, 118, 59, 0, 494, 492, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 499, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 5, 229, 0, 0, 500, 521, 1, 0, 0, 0, 501, 502, 3, 116, 58, 0, 502, 503, 5, 219, 0, 0, 503, 508, 3, 70, 35, 0, 504, 505, 5, 206, 0, 0, 505, 507, 3, 70, 35, 0, 506, 504, 1, 0, 0, 0, 507, 510, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 511, 512, 5, 229, 0, 0, 512, 521, 1, 0, 0, 0, 513, 514, 3, 116, 58, 0, 514, 516, 5, 219, 0, 0, 515, 517, 3, 72, 36, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 5, 229, 0, 0, 519, 521, 1, 0, 0, 0, 520, 473, 1, 0, 0, 0, 520, 474, 1, 0, 0, 0, 520, 489, 1, 0, 0, 0, 520, 501, 1, 0, 0, 0, 520, 513, 1, 0, 0, 0, 521, 71, 1, 0, 0, 0, 522, 527, 3, 74, 37, 0, 523, 524, 5, 206, 0, 0, 524, 526, 3, 74, 37, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 73, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 531, 6, 37, -1, 0, 531, 533, 5, 19, 0, 0, 532, 534, 3, 74, 37, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 540, 1, 0, 0, 0, 535, 536, 5, 186, 0, 0, 536, 537, 3, 74, 37, 0, 537, 538, 5, 163, 0, 0, 538, 539, 3, 74, 37, 0, 539, 541, 1, 0, 0, 0, 540, 535, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 545, 5, 52, 0, 0, 545, 547, 3, 74, 37, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 53, 0, 0, 549, 660, 1, 0, 0, 0, 550, 551, 5, 20, 0, 0, 551, 552, 5, 219, 0, 0, 552, 553, 3, 74, 37, 0, 553, 554, 5, 10, 0, 0, 554, 555, 3, 70, 35, 0, 555, 556, 5, 229, 0, 0, 556, 660, 1, 0, 0, 0, 557, 558, 5, 36, 0, 0, 558, 660, 5, 199, 0, 0, 559, 560, 5, 59, 0, 0, 560, 561, 5, 219, 0, 0, 561, 562, 3, 108, 54, 0, 562, 563, 5, 68, 0, 0, 563, 564, 3, 74, 37, 0, 564, 565, 5, 229, 0, 0, 565, 660, 1, 0, 0, 0, 566, 567, 5, 86, 0, 0, 567, 568, 3, 74, 37, 0, 568, 569, 3, 108, 54, 0, 569, 660, 1, 0, 0, 0, 570, 571, 5, 155, 0, 0, 571, 572, 5, 219, 0, 0, 572, 573, 3, 74, 37, 0, 573, 574, 5, 68, 0, 0, 574, 577, 3, 74, 37, 0, 575, 576, 5, 65, 0, 0, 576, 578, 3, 74, 37, 0, 577, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 5, 229, 0, 0, 580, 660, 1, 0, 0, 0, 581, 582, 5, 166, 0, 0, 582, 660, 5, 199, 0, 0, 583, 584, 5, 171, 0, 0, 584, 585, 5, 219, 0, 0, 585, 586, 7, 9, 0, 0, 586, 587, 5, 199, 0, 0, 587, 588, 5, 68, 0, 0, 588, 589, 3, 74, 37, 0, 589, 590, 5, 229, 0, 0, 590, 660, 1, 0, 0, 0, 591, 592, 3, 116, 58, 0, 592, 594, 5, 219, 0, 0, 593, 595, 3, 72, 36, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 229, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 125, 0, 0, 599, 600, 5, 219, 0, 0, 600, 601, 3, 56, 28, 0, 601, 602, 5, 229, 0, 0, 602, 660, 1, 0, 0, 0, 603, 604, 3, 116, 58, 0, 604, 606, 5, 219, 0, 0, 605, 607, 3, 72, 36, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 5, 229, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 125, 0, 0, 611, 612, 3, 116, 58, 0, 612, 660, 1, 0, 0, 0, 613, 619, 3, 116, 58, 0, 614, 616, 5, 219, 0, 0, 615, 617, 3, 72, 36, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 5, 229, 0, 0, 619, 614, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 5, 219, 0, 0, 622, 624, 5, 49, 0, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 627, 3, 76, 38, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 229, 0, 0, 629, 660, 1, 0, 0, 0, 630, 660, 3, 106, 53, 0, 631, 632, 5, 208, 0, 0, 632, 660, 3, 74, 37, 17, 633, 634, 5, 115, 0, 0, 634, 660, 3, 74, 37, 12, 635, 636, 3, 94, 47, 0, 636, 637, 5, 210, 0, 0, 637, 639, 1, 0, 0, 0, 638, 635, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 660, 5, 202, 0, 0, 641, 642, 5, 219, 0, 0, 642, 643, 3, 2, 1, 0, 643, 644, 5, 229, 0, 0, 644, 660, 1, 0, 0, 0, 645, 646, 5, 219, 0, 0, 646, 647, 3, 74, 37, 0, 647, 648, 5, 229, 0, 0, 648, 660, 1, 0, 0, 0, 649, 650, 5, 219, 0, 0, 650, 651, 3, 72, 36, 0, 651, 652, 5, 229, 0, 0, 652, 660, 1, 0, 0, 0, 653, 655, 5, 217, 0, 0, 654, 656, 3, 72, 36, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 5, 228, 0, 0, 658, 660, 3, 86, 43, 0, 659, 530, 1, 0, 0, 0, 659, 550, 1, 0, 0, 0, 659, 557, 1, 0, 0, 0, 659, 559, 1, 0, 0, 0, 659, 566, 1, 0, 0, 0, 659, 570, 1, 0, 0, 0, 659, 581, 1, 0, 0, 0, 659, 583, 1, 0, 0, 0, 659, 591, 1, 0, 0, 0, 659, 603, 1, 0, 0, 0, 659, 613, 1, 0, 0, 0, 659, 630, 1, 0, 0, 0, 659, 631, 1, 0, 0, 0, 659, 633, 1, 0, 0, 0, 659, 638, 1, 0, 0, 0, 659, 641, 1, 0, 0, 0, 659, 645, 1, 0, 0, 0, 659, 649, 1, 0, 0, 0, 659, 653, 1, 0, 0, 0, 659, 658, 1, 0, 0, 0, 660, 745, 1, 0, 0, 0, 661, 665, 10, 16, 0, 0, 662, 666, 5, 202, 0, 0, 663, 666, 5, 231, 0, 0, 664, 666, 5, 222, 0, 0, 665, 662, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 744, 3, 74, 37, 17, 668, 672, 10, 15, 0, 0, 669, 673, 5, 223, 0, 0, 670, 673, 5, 208, 0, 0, 671, 673, 5, 207, 0, 0, 672, 669, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 744, 3, 74, 37, 16, 675, 694, 10, 14, 0, 0, 676, 695, 5, 211, 0, 0, 677, 695, 5, 212, 0, 0, 678, 695, 5, 221, 0, 0, 679, 695, 5, 218, 0, 0, 680, 695, 5, 213, 0, 0, 681, 695, 5, 220, 0, 0, 682, 695, 5, 214, 0, 0, 683, 685, 5, 115, 0, 0, 684, 683, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 5, 80, 0, 0, 687, 689, 5, 25, 0, 0, 688, 687, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 695, 1, 0, 0, 0, 690, 692, 5, 115, 0, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 695, 7, 10, 0, 0, 694, 676, 1, 0, 0, 0, 694, 677, 1, 0, 0, 0, 694, 678, 1, 0, 0, 0, 694, 679, 1, 0, 0, 0, 694, 680, 1, 0, 0, 0, 694, 681, 1, 0, 0, 0, 694, 682, 1, 0, 0, 0, 694, 684, 1, 0, 0, 0, 694, 691, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 744, 3, 74, 37, 15, 697, 698, 10, 11, 0, 0, 698, 699, 5, 6, 0, 0, 699, 744, 3, 74, 37, 12, 700, 701, 10, 10, 0, 0, 701, 702, 5, 121, 0, 0, 702, 744, 3, 74, 37, 11, 703, 705, 10, 9, 0, 0, 704, 706, 5, 115, 0, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 5, 16, 0, 0, 708, 709, 3, 74, 37, 0, 709, 710, 5, 6, 0, 0, 710, 711, 3, 74, 37, 10, 711, 744, 1, 0, 0, 0, 712, 713, 10, 8, 0, 0, 713, 714, 5, 224, 0, 0, 714, 715, 3, 74, 37, 0, 715, 716, 5, 205, 0, 0, 716, 717, 3, 74, 37, 8, 717, 744, 1, 0, 0, 0, 718, 719, 10, 20, 0, 0, 719, 720, 5, 217, 0, 0, 720, 721, 3, 74, 37, 0, 721, 722, 5, 228, 0, 0, 722, 744, 1, 0, 0, 0, 723, 724, 10, 19, 0, 0, 724, 725, 5, 210, 0, 0, 725, 744, 5, 197, 0, 0, 726, 727, 10, 18, 0, 0, 727, 728, 5, 210, 0, 0, 728, 744, 3, 116, 58, 0, 729, 730, 10, 13, 0, 0, 730, 732, 5, 88, 0, 0, 731, 733, 5, 115, 0, 0, 732, 731, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 744, 5, 116, 0, 0, 735, 741, 10, 7, 0, 0, 736, 742, 3, 114, 57, 0, 737, 738, 5, 10, 0, 0, 738, 742, 3, 116, 58, 0, 739, 740, 5, 10, 0, 0, 740, 742, 5, 199, 0, 0, 741, 736, 1, 0, 0, 0, 741, 737, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 1, 0, 0, 0, 743, 661, 1, 0, 0, 0, 743, 668, 1, 0, 0, 0, 743, 675, 1, 0, 0, 0, 743, 697, 1, 0, 0, 0, 743, 700, 1, 0, 0, 0, 743, 703, 1, 0, 0, 0, 743, 712, 1, 0, 0, 0, 743, 718, 1, 0, 0, 0, 743, 723, 1, 0, 0, 0, 743, 726, 1, 0, 0, 0, 743, 729, 1, 0, 0, 0, 743, 735, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 75, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 753, 3, 78, 39, 0, 749, 750, 5, 206, 0, 0, 750, 752, 3, 78, 39, 0, 751, 749, 1, 0, 0, 0, 752, 755, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 77, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 759, 3, 80, 40, 0, 757, 759, 3, 74, 37, 0, 758, 756, 1, 0, 0, 0, 758, 757, 1, 0, 0, 0, 759, 79, 1, 0, 0, 0, 760, 761, 5, 219, 0, 0, 761, 766, 3, 116, 58, 0, 762, 763, 5, 206, 0, 0, 763, 765, 3, 116, 58, 0, 764, 762, 1, 0, 0, 0, 765, 768, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 769, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 769, 770, 5, 229, 0, 0, 770, 780, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 206, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 760, 1, 0, 0, 0, 779, 771, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 5, 201, 0, 0, 782, 783, 3, 74, 37, 0, 783, 81, 1, 0, 0, 0, 784, 789, 3, 84, 42, 0, 785, 786, 5, 206, 0, 0, 786, 788, 3, 84, 42, 0, 787, 785, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 83, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 3, 116, 58, 0, 793, 794, 5, 10, 0, 0, 794, 795, 5, 219, 0, 0, 795, 796, 3, 2, 1, 0, 796, 797, 5, 229, 0, 0, 797, 803, 1, 0, 0, 0, 798, 799, 3, 74, 37, 0, 799, 800, 5, 10, 0, 0, 800, 801, 3, 116, 58, 0, 801, 803, 1, 0, 0, 0, 802, 792, 1, 0, 0, 0, 802, 798, 1, 0, 0, 0, 803, 85, 1, 0, 0, 0, 804, 812, 5, 200, 0, 0, 805, 806, 3, 94, 47, 0, 806, 807, 5, 210, 0, 0, 807, 809, 1, 0, 0, 0, 808, 805, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 812, 3, 88, 44, 0, 811, 804, 1, 0, 0, 0, 811, 808, 1, 0, 0, 0, 812, 87, 1, 0, 0, 0, 813, 818, 3, 116, 58, 0, 814, 815, 5, 210, 0, 0, 815, 817, 3, 116, 58, 0, 816, 814, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 89, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 822, 6, 45, -1, 0, 822, 829, 3, 94, 47, 0, 823, 829, 3, 92, 46, 0, 824, 825, 5, 219, 0, 0, 825, 826, 3, 2, 1, 0, 826, 827, 5, 229, 0, 0, 827, 829, 1, 0, 0, 0, 828, 821, 1, 0, 0, 0, 828, 823, 1, 0, 0, 0, 828, 824, 1, 0, 0, 0, 829, 838, 1, 0, 0, 0, 830, 834, 10, 1, 0, 0, 831, 835, 3, 114, 57, 0, 832, 833, 5, 10, 0, 0, 833, 835, 3, 116, 58, 0, 834, 831, 1, 0, 0, 0, 834, 832, 1, 0, 0, 0, 835, 837, 1, 0, 0, 0, 836, 830, 1, 0, 0, 0, 837, 840, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 91, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 842, 3, 116, 58, 0, 842, 844, 5, 219, 0, 0, 843, 845, 3, 96, 48, 0, 844, 843, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 5, 229, 0, 0, 847, 93, 1, 0, 0, 0, 848, 849, 3, 100, 50, 0, 849, 850, 5, 210, 0, 0, 850, 852, 1, 0, 0, 0, 851, 848, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 3, 116, 58, 0, 854, 95, 1, 0, 0, 0, 855, 860, 3, 98, 49, 0, 856, 857, 5, 206, 0, 0, 857, 859, 3, 98, 49, 0, 858, 856, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 97, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 863, 867, 3, 88, 44, 0, 864, 867, 3, 92, 46, 0, 865, 867, 3, 106, 53, 0, 866, 863, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 866, 865, 1, 0, 0, 0, 867, 99, 1, 0, 0, 0, 868, 869, 3, 116, 58, 0, 869, 101, 1, 0, 0, 0, 870, 879, 5, 195, 0, 0, 871, 872, 5, 210, 0, 0, 872, 879, 7, 11, 0, 0, 873, 874, 5, 197, 0, 0, 874, 876, 5, 210, 0, 0, 875, 877, 7, 11, 0, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 879, 1, 0, 0, 0, 878, 870, 1, 0, 0, 0, 878, 871, 1, 0, 0, 0, 878, 873, 1, 0, 0, 0, 879, 103, 1, 0, 0, 0, 880, 882, 7, 12, 0, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 889, 1, 0, 0, 0, 883, 890, 3, 102, 51, 0, 884, 890, 5, 196, 0, 0, 885, 890, 5, 197, 0, 0, 886, 890, 5, 198, 0, 0, 887, 890, 5, 82, 0, 0, 888, 890, 5, 113, 0, 0, 889, 883, 1, 0, 0, 0, 889, 884, 1, 0, 0, 0, 889, 885, 1, 0, 0, 0, 889, 886, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 888, 1, 0, 0, 0, 890, 105, 1, 0, 0, 0, 891, 895, 3, 104, 52, 0, 892, 895, 5, 199, 0, 0, 893, 895, 5, 116, 0, 0, 894, 891, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 894, 893, 1, 0, 0, 0, 895, 107, 1, 0, 0, 0, 896, 897, 7, 13, 0, 0, 897, 109, 1, 0, 0, 0, 898, 899, 7, 14, 0, 0, 899, 111, 1, 0, 0, 0, 900, 901, 7, 15, 0, 0, 901, 113, 1, 0, 0, 0, 902, 905, 5, 194, 0, 0, 903, 905, 3, 112, 56, 0, 904, 902, 1, 0, 0, 0, 904, 903, 1, 0, 0, 0, 905, 115, 1, 0, 0, 0, 906, 910, 5, 194, 0, 0, 907, 910, 3, 108, 54, 0, 908, 910, 3, 110, 55, 0, 909, 906, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 908, 1, 0, 0, 0, 910, 117, 1, 0, 0, 0, 911, 912, 5, 199, 0, 0, 912, 913, 5, 212, 0, 0, 913, 914, 3, 104, 52, 0, 914, 119, 1, 0, 0, 0, 115, 122, 132, 140, 143, 147, 150, 154, 157, 160, 163, 166, 170, 174, 177, 180, 183, 187, 190, 199, 205, 226, 243, 260, 266, 272, 283, 285, 296, 299, 305, 313, 319, 321, 325, 330, 333, 336, 340, 344, 347, 349, 352, 356, 360, 363, 365, 367, 372, 383, 389, 396, 401, 405, 409, 414, 421, 429, 432, 435, 454, 468, 484, 496, 508, 516, 520, 527, 533, 542, 546, 577, 594, 606, 616, 619, 623, 626, 638, 655, 659, 665, 672, 684, 688, 691, 694, 705, 732, 741, 743, 745, 753, 758, 766, 776, 779, 789, 802, 808, 811, 818, 828, 834, 838, 844, 851, 860, 866, 876, 878, 881, 889, 894, 904, 909] \ No newline at end of file +[4, 1, 235, 916, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 1, 0, 1, 0, 3, 0, 123, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 131, 8, 1, 10, 1, 12, 1, 134, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 141, 8, 2, 1, 3, 3, 3, 144, 8, 3, 1, 3, 1, 3, 3, 3, 148, 8, 3, 1, 3, 3, 3, 151, 8, 3, 1, 3, 1, 3, 3, 3, 155, 8, 3, 1, 3, 3, 3, 158, 8, 3, 1, 3, 3, 3, 161, 8, 3, 1, 3, 3, 3, 164, 8, 3, 1, 3, 3, 3, 167, 8, 3, 1, 3, 1, 3, 3, 3, 171, 8, 3, 1, 3, 1, 3, 3, 3, 175, 8, 3, 1, 3, 3, 3, 178, 8, 3, 1, 3, 3, 3, 181, 8, 3, 1, 3, 3, 3, 184, 8, 3, 1, 3, 1, 3, 3, 3, 188, 8, 3, 1, 3, 3, 3, 191, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 200, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 3, 7, 206, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 225, 8, 8, 10, 8, 12, 8, 228, 9, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 244, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 261, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 267, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 273, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 284, 8, 15, 3, 15, 286, 8, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 3, 18, 297, 8, 18, 1, 18, 3, 18, 300, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 306, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 314, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 320, 8, 18, 10, 18, 12, 18, 323, 9, 18, 1, 19, 3, 19, 326, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 331, 8, 19, 1, 19, 3, 19, 334, 8, 19, 1, 19, 3, 19, 337, 8, 19, 1, 19, 1, 19, 3, 19, 341, 8, 19, 1, 19, 1, 19, 3, 19, 345, 8, 19, 1, 19, 3, 19, 348, 8, 19, 3, 19, 350, 8, 19, 1, 19, 3, 19, 353, 8, 19, 1, 19, 1, 19, 3, 19, 357, 8, 19, 1, 19, 1, 19, 3, 19, 361, 8, 19, 1, 19, 3, 19, 364, 8, 19, 3, 19, 366, 8, 19, 3, 19, 368, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 373, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 384, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 390, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 395, 8, 23, 10, 23, 12, 23, 398, 9, 23, 1, 24, 1, 24, 3, 24, 402, 8, 24, 1, 24, 1, 24, 3, 24, 406, 8, 24, 1, 24, 1, 24, 3, 24, 410, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 415, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 420, 8, 26, 10, 26, 12, 26, 423, 9, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 430, 8, 28, 1, 28, 3, 28, 433, 8, 28, 1, 28, 3, 28, 436, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 455, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 469, 8, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 483, 8, 35, 10, 35, 12, 35, 486, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 495, 8, 35, 10, 35, 12, 35, 498, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 507, 8, 35, 10, 35, 12, 35, 510, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 517, 8, 35, 1, 35, 1, 35, 3, 35, 521, 8, 35, 1, 36, 1, 36, 1, 36, 5, 36, 526, 8, 36, 10, 36, 12, 36, 529, 9, 36, 1, 37, 1, 37, 1, 37, 3, 37, 534, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 4, 37, 541, 8, 37, 11, 37, 12, 37, 542, 1, 37, 1, 37, 3, 37, 547, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 578, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 595, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 607, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 617, 8, 37, 1, 37, 3, 37, 620, 8, 37, 1, 37, 1, 37, 3, 37, 624, 8, 37, 1, 37, 3, 37, 627, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 639, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 656, 8, 37, 1, 37, 1, 37, 3, 37, 660, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 666, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 673, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 685, 8, 37, 1, 37, 1, 37, 3, 37, 689, 8, 37, 1, 37, 3, 37, 692, 8, 37, 1, 37, 3, 37, 695, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 706, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 733, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 742, 8, 37, 5, 37, 744, 8, 37, 10, 37, 12, 37, 747, 9, 37, 1, 38, 1, 38, 1, 38, 5, 38, 752, 8, 38, 10, 38, 12, 38, 755, 9, 38, 1, 39, 1, 39, 3, 39, 759, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 765, 8, 40, 10, 40, 12, 40, 768, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 775, 8, 40, 10, 40, 12, 40, 778, 9, 40, 3, 40, 780, 8, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 788, 8, 41, 10, 41, 12, 41, 791, 9, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 803, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 809, 8, 43, 1, 43, 3, 43, 812, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 817, 8, 44, 10, 44, 12, 44, 820, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 829, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 835, 8, 45, 5, 45, 837, 8, 45, 10, 45, 12, 45, 840, 9, 45, 1, 46, 1, 46, 1, 46, 3, 46, 845, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 3, 47, 852, 8, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 5, 48, 859, 8, 48, 10, 48, 12, 48, 862, 9, 48, 1, 49, 1, 49, 1, 49, 3, 49, 867, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 877, 8, 51, 3, 51, 879, 8, 51, 1, 52, 3, 52, 882, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 890, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 895, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 905, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 910, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 0, 3, 36, 74, 90, 60, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 0, 16, 2, 0, 32, 32, 141, 141, 2, 0, 84, 84, 96, 96, 3, 0, 4, 4, 8, 8, 12, 12, 4, 0, 4, 4, 7, 8, 12, 12, 147, 147, 2, 0, 96, 96, 140, 140, 2, 0, 4, 4, 8, 8, 2, 0, 11, 11, 42, 43, 2, 0, 62, 62, 93, 93, 2, 0, 133, 133, 143, 143, 3, 0, 17, 17, 95, 95, 170, 170, 2, 0, 79, 79, 98, 98, 1, 0, 196, 197, 2, 0, 208, 208, 223, 223, 8, 0, 37, 37, 76, 76, 108, 108, 110, 110, 132, 132, 145, 145, 185, 185, 190, 190, 13, 0, 2, 24, 26, 36, 38, 75, 77, 81, 83, 107, 109, 109, 111, 112, 114, 115, 117, 130, 133, 144, 146, 184, 186, 189, 191, 192, 4, 0, 36, 36, 62, 62, 77, 77, 91, 91, 1029, 0, 122, 1, 0, 0, 0, 2, 126, 1, 0, 0, 0, 4, 140, 1, 0, 0, 0, 6, 143, 1, 0, 0, 0, 8, 192, 1, 0, 0, 0, 10, 195, 1, 0, 0, 0, 12, 201, 1, 0, 0, 0, 14, 205, 1, 0, 0, 0, 16, 211, 1, 0, 0, 0, 18, 229, 1, 0, 0, 0, 20, 232, 1, 0, 0, 0, 22, 235, 1, 0, 0, 0, 24, 245, 1, 0, 0, 0, 26, 248, 1, 0, 0, 0, 28, 252, 1, 0, 0, 0, 30, 285, 1, 0, 0, 0, 32, 287, 1, 0, 0, 0, 34, 290, 1, 0, 0, 0, 36, 305, 1, 0, 0, 0, 38, 367, 1, 0, 0, 0, 40, 372, 1, 0, 0, 0, 42, 383, 1, 0, 0, 0, 44, 385, 1, 0, 0, 0, 46, 391, 1, 0, 0, 0, 48, 399, 1, 0, 0, 0, 50, 411, 1, 0, 0, 0, 52, 416, 1, 0, 0, 0, 54, 424, 1, 0, 0, 0, 56, 429, 1, 0, 0, 0, 58, 437, 1, 0, 0, 0, 60, 441, 1, 0, 0, 0, 62, 445, 1, 0, 0, 0, 64, 454, 1, 0, 0, 0, 66, 468, 1, 0, 0, 0, 68, 470, 1, 0, 0, 0, 70, 520, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 659, 1, 0, 0, 0, 76, 748, 1, 0, 0, 0, 78, 758, 1, 0, 0, 0, 80, 779, 1, 0, 0, 0, 82, 784, 1, 0, 0, 0, 84, 802, 1, 0, 0, 0, 86, 811, 1, 0, 0, 0, 88, 813, 1, 0, 0, 0, 90, 828, 1, 0, 0, 0, 92, 841, 1, 0, 0, 0, 94, 851, 1, 0, 0, 0, 96, 855, 1, 0, 0, 0, 98, 866, 1, 0, 0, 0, 100, 868, 1, 0, 0, 0, 102, 878, 1, 0, 0, 0, 104, 881, 1, 0, 0, 0, 106, 894, 1, 0, 0, 0, 108, 896, 1, 0, 0, 0, 110, 898, 1, 0, 0, 0, 112, 900, 1, 0, 0, 0, 114, 904, 1, 0, 0, 0, 116, 909, 1, 0, 0, 0, 118, 911, 1, 0, 0, 0, 120, 123, 3, 2, 1, 0, 121, 123, 3, 6, 3, 0, 122, 120, 1, 0, 0, 0, 122, 121, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 124, 125, 5, 0, 0, 1, 125, 1, 1, 0, 0, 0, 126, 132, 3, 4, 2, 0, 127, 128, 5, 176, 0, 0, 128, 129, 5, 4, 0, 0, 129, 131, 3, 4, 2, 0, 130, 127, 1, 0, 0, 0, 131, 134, 1, 0, 0, 0, 132, 130, 1, 0, 0, 0, 132, 133, 1, 0, 0, 0, 133, 3, 1, 0, 0, 0, 134, 132, 1, 0, 0, 0, 135, 141, 3, 6, 3, 0, 136, 137, 5, 218, 0, 0, 137, 138, 3, 2, 1, 0, 138, 139, 5, 229, 0, 0, 139, 141, 1, 0, 0, 0, 140, 135, 1, 0, 0, 0, 140, 136, 1, 0, 0, 0, 141, 5, 1, 0, 0, 0, 142, 144, 3, 8, 4, 0, 143, 142, 1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 145, 1, 0, 0, 0, 145, 147, 5, 146, 0, 0, 146, 148, 5, 49, 0, 0, 147, 146, 1, 0, 0, 0, 147, 148, 1, 0, 0, 0, 148, 150, 1, 0, 0, 0, 149, 151, 3, 10, 5, 0, 150, 149, 1, 0, 0, 0, 150, 151, 1, 0, 0, 0, 151, 152, 1, 0, 0, 0, 152, 154, 3, 72, 36, 0, 153, 155, 3, 12, 6, 0, 154, 153, 1, 0, 0, 0, 154, 155, 1, 0, 0, 0, 155, 157, 1, 0, 0, 0, 156, 158, 3, 14, 7, 0, 157, 156, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 160, 1, 0, 0, 0, 159, 161, 3, 18, 9, 0, 160, 159, 1, 0, 0, 0, 160, 161, 1, 0, 0, 0, 161, 163, 1, 0, 0, 0, 162, 164, 3, 20, 10, 0, 163, 162, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 166, 1, 0, 0, 0, 165, 167, 3, 22, 11, 0, 166, 165, 1, 0, 0, 0, 166, 167, 1, 0, 0, 0, 167, 170, 1, 0, 0, 0, 168, 169, 5, 189, 0, 0, 169, 171, 7, 0, 0, 0, 170, 168, 1, 0, 0, 0, 170, 171, 1, 0, 0, 0, 171, 174, 1, 0, 0, 0, 172, 173, 5, 189, 0, 0, 173, 175, 5, 169, 0, 0, 174, 172, 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 177, 1, 0, 0, 0, 176, 178, 3, 24, 12, 0, 177, 176, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 180, 1, 0, 0, 0, 179, 181, 3, 16, 8, 0, 180, 179, 1, 0, 0, 0, 180, 181, 1, 0, 0, 0, 181, 183, 1, 0, 0, 0, 182, 184, 3, 26, 13, 0, 183, 182, 1, 0, 0, 0, 183, 184, 1, 0, 0, 0, 184, 187, 1, 0, 0, 0, 185, 188, 3, 30, 15, 0, 186, 188, 3, 32, 16, 0, 187, 185, 1, 0, 0, 0, 187, 186, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 190, 1, 0, 0, 0, 189, 191, 3, 34, 17, 0, 190, 189, 1, 0, 0, 0, 190, 191, 1, 0, 0, 0, 191, 7, 1, 0, 0, 0, 192, 193, 5, 189, 0, 0, 193, 194, 3, 82, 41, 0, 194, 9, 1, 0, 0, 0, 195, 196, 5, 168, 0, 0, 196, 199, 5, 197, 0, 0, 197, 198, 5, 189, 0, 0, 198, 200, 5, 164, 0, 0, 199, 197, 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 11, 1, 0, 0, 0, 201, 202, 5, 68, 0, 0, 202, 203, 3, 36, 18, 0, 203, 13, 1, 0, 0, 0, 204, 206, 7, 1, 0, 0, 205, 204, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 208, 5, 9, 0, 0, 208, 209, 5, 90, 0, 0, 209, 210, 3, 72, 36, 0, 210, 15, 1, 0, 0, 0, 211, 212, 5, 188, 0, 0, 212, 213, 3, 116, 58, 0, 213, 214, 5, 10, 0, 0, 214, 215, 5, 218, 0, 0, 215, 216, 3, 56, 28, 0, 216, 226, 5, 229, 0, 0, 217, 218, 5, 206, 0, 0, 218, 219, 3, 116, 58, 0, 219, 220, 5, 10, 0, 0, 220, 221, 5, 218, 0, 0, 221, 222, 3, 56, 28, 0, 222, 223, 5, 229, 0, 0, 223, 225, 1, 0, 0, 0, 224, 217, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 17, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 5, 129, 0, 0, 230, 231, 3, 74, 37, 0, 231, 19, 1, 0, 0, 0, 232, 233, 5, 187, 0, 0, 233, 234, 3, 74, 37, 0, 234, 21, 1, 0, 0, 0, 235, 236, 5, 73, 0, 0, 236, 243, 5, 18, 0, 0, 237, 238, 7, 0, 0, 0, 238, 239, 5, 218, 0, 0, 239, 240, 3, 72, 36, 0, 240, 241, 5, 229, 0, 0, 241, 244, 1, 0, 0, 0, 242, 244, 3, 72, 36, 0, 243, 237, 1, 0, 0, 0, 243, 242, 1, 0, 0, 0, 244, 23, 1, 0, 0, 0, 245, 246, 5, 74, 0, 0, 246, 247, 3, 74, 37, 0, 247, 25, 1, 0, 0, 0, 248, 249, 5, 122, 0, 0, 249, 250, 5, 18, 0, 0, 250, 251, 3, 46, 23, 0, 251, 27, 1, 0, 0, 0, 252, 253, 5, 122, 0, 0, 253, 254, 5, 18, 0, 0, 254, 255, 3, 72, 36, 0, 255, 29, 1, 0, 0, 0, 256, 257, 5, 99, 0, 0, 257, 260, 3, 74, 37, 0, 258, 259, 5, 206, 0, 0, 259, 261, 3, 74, 37, 0, 260, 258, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 266, 1, 0, 0, 0, 262, 263, 5, 189, 0, 0, 263, 267, 5, 164, 0, 0, 264, 265, 5, 18, 0, 0, 265, 267, 3, 72, 36, 0, 266, 262, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 286, 1, 0, 0, 0, 268, 269, 5, 99, 0, 0, 269, 272, 3, 74, 37, 0, 270, 271, 5, 189, 0, 0, 271, 273, 5, 164, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 5, 118, 0, 0, 275, 276, 3, 74, 37, 0, 276, 286, 1, 0, 0, 0, 277, 278, 5, 99, 0, 0, 278, 279, 3, 74, 37, 0, 279, 280, 5, 118, 0, 0, 280, 283, 3, 74, 37, 0, 281, 282, 5, 18, 0, 0, 282, 284, 3, 72, 36, 0, 283, 281, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 286, 1, 0, 0, 0, 285, 256, 1, 0, 0, 0, 285, 268, 1, 0, 0, 0, 285, 277, 1, 0, 0, 0, 286, 31, 1, 0, 0, 0, 287, 288, 5, 118, 0, 0, 288, 289, 3, 74, 37, 0, 289, 33, 1, 0, 0, 0, 290, 291, 5, 150, 0, 0, 291, 292, 3, 52, 26, 0, 292, 35, 1, 0, 0, 0, 293, 294, 6, 18, -1, 0, 294, 296, 3, 90, 45, 0, 295, 297, 5, 61, 0, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 44, 22, 0, 299, 298, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 306, 1, 0, 0, 0, 301, 302, 5, 218, 0, 0, 302, 303, 3, 36, 18, 0, 303, 304, 5, 229, 0, 0, 304, 306, 1, 0, 0, 0, 305, 293, 1, 0, 0, 0, 305, 301, 1, 0, 0, 0, 306, 321, 1, 0, 0, 0, 307, 308, 10, 3, 0, 0, 308, 309, 3, 40, 20, 0, 309, 310, 3, 36, 18, 4, 310, 320, 1, 0, 0, 0, 311, 313, 10, 4, 0, 0, 312, 314, 3, 38, 19, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 5, 90, 0, 0, 316, 317, 3, 36, 18, 0, 317, 318, 3, 42, 21, 0, 318, 320, 1, 0, 0, 0, 319, 307, 1, 0, 0, 0, 319, 311, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 37, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 326, 7, 2, 0, 0, 325, 324, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 334, 5, 84, 0, 0, 328, 330, 5, 84, 0, 0, 329, 331, 7, 2, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 334, 7, 2, 0, 0, 333, 325, 1, 0, 0, 0, 333, 328, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 368, 1, 0, 0, 0, 335, 337, 7, 3, 0, 0, 336, 335, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 7, 4, 0, 0, 339, 341, 5, 123, 0, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 350, 1, 0, 0, 0, 342, 344, 7, 4, 0, 0, 343, 345, 5, 123, 0, 0, 344, 343, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 347, 1, 0, 0, 0, 346, 348, 7, 3, 0, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 350, 1, 0, 0, 0, 349, 336, 1, 0, 0, 0, 349, 342, 1, 0, 0, 0, 350, 368, 1, 0, 0, 0, 351, 353, 7, 5, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 356, 5, 69, 0, 0, 355, 357, 5, 123, 0, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 366, 1, 0, 0, 0, 358, 360, 5, 69, 0, 0, 359, 361, 5, 123, 0, 0, 360, 359, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 1, 0, 0, 0, 362, 364, 7, 5, 0, 0, 363, 362, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 352, 1, 0, 0, 0, 365, 358, 1, 0, 0, 0, 366, 368, 1, 0, 0, 0, 367, 333, 1, 0, 0, 0, 367, 349, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 39, 1, 0, 0, 0, 369, 370, 5, 31, 0, 0, 370, 373, 5, 90, 0, 0, 371, 373, 5, 206, 0, 0, 372, 369, 1, 0, 0, 0, 372, 371, 1, 0, 0, 0, 373, 41, 1, 0, 0, 0, 374, 375, 5, 119, 0, 0, 375, 384, 3, 72, 36, 0, 376, 377, 5, 179, 0, 0, 377, 378, 5, 218, 0, 0, 378, 379, 3, 72, 36, 0, 379, 380, 5, 229, 0, 0, 380, 384, 1, 0, 0, 0, 381, 382, 5, 179, 0, 0, 382, 384, 3, 72, 36, 0, 383, 374, 1, 0, 0, 0, 383, 376, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 43, 1, 0, 0, 0, 385, 386, 5, 144, 0, 0, 386, 389, 3, 50, 25, 0, 387, 388, 5, 118, 0, 0, 388, 390, 3, 50, 25, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 45, 1, 0, 0, 0, 391, 396, 3, 48, 24, 0, 392, 393, 5, 206, 0, 0, 393, 395, 3, 48, 24, 0, 394, 392, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 47, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 401, 3, 74, 37, 0, 400, 402, 7, 6, 0, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 404, 5, 117, 0, 0, 404, 406, 7, 7, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 408, 5, 26, 0, 0, 408, 410, 5, 199, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 49, 1, 0, 0, 0, 411, 414, 3, 104, 52, 0, 412, 413, 5, 231, 0, 0, 413, 415, 3, 104, 52, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 51, 1, 0, 0, 0, 416, 421, 3, 54, 27, 0, 417, 418, 5, 206, 0, 0, 418, 420, 3, 54, 27, 0, 419, 417, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 53, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 425, 3, 116, 58, 0, 425, 426, 5, 212, 0, 0, 426, 427, 3, 106, 53, 0, 427, 55, 1, 0, 0, 0, 428, 430, 3, 58, 29, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 432, 1, 0, 0, 0, 431, 433, 3, 60, 30, 0, 432, 431, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 435, 1, 0, 0, 0, 434, 436, 3, 62, 31, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 57, 1, 0, 0, 0, 437, 438, 5, 126, 0, 0, 438, 439, 5, 18, 0, 0, 439, 440, 3, 72, 36, 0, 440, 59, 1, 0, 0, 0, 441, 442, 5, 122, 0, 0, 442, 443, 5, 18, 0, 0, 443, 444, 3, 46, 23, 0, 444, 61, 1, 0, 0, 0, 445, 446, 7, 8, 0, 0, 446, 447, 3, 64, 32, 0, 447, 63, 1, 0, 0, 0, 448, 455, 3, 66, 33, 0, 449, 450, 5, 16, 0, 0, 450, 451, 3, 66, 33, 0, 451, 452, 5, 6, 0, 0, 452, 453, 3, 66, 33, 0, 453, 455, 1, 0, 0, 0, 454, 448, 1, 0, 0, 0, 454, 449, 1, 0, 0, 0, 455, 65, 1, 0, 0, 0, 456, 457, 5, 33, 0, 0, 457, 469, 5, 142, 0, 0, 458, 459, 5, 175, 0, 0, 459, 469, 5, 128, 0, 0, 460, 461, 5, 175, 0, 0, 461, 469, 5, 64, 0, 0, 462, 463, 3, 104, 52, 0, 463, 464, 5, 128, 0, 0, 464, 469, 1, 0, 0, 0, 465, 466, 3, 104, 52, 0, 466, 467, 5, 64, 0, 0, 467, 469, 1, 0, 0, 0, 468, 456, 1, 0, 0, 0, 468, 458, 1, 0, 0, 0, 468, 460, 1, 0, 0, 0, 468, 462, 1, 0, 0, 0, 468, 465, 1, 0, 0, 0, 469, 67, 1, 0, 0, 0, 470, 471, 3, 74, 37, 0, 471, 472, 5, 0, 0, 1, 472, 69, 1, 0, 0, 0, 473, 521, 3, 116, 58, 0, 474, 475, 3, 116, 58, 0, 475, 476, 5, 218, 0, 0, 476, 477, 3, 116, 58, 0, 477, 484, 3, 70, 35, 0, 478, 479, 5, 206, 0, 0, 479, 480, 3, 116, 58, 0, 480, 481, 3, 70, 35, 0, 481, 483, 1, 0, 0, 0, 482, 478, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 487, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 488, 5, 229, 0, 0, 488, 521, 1, 0, 0, 0, 489, 490, 3, 116, 58, 0, 490, 491, 5, 218, 0, 0, 491, 496, 3, 118, 59, 0, 492, 493, 5, 206, 0, 0, 493, 495, 3, 118, 59, 0, 494, 492, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 499, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 5, 229, 0, 0, 500, 521, 1, 0, 0, 0, 501, 502, 3, 116, 58, 0, 502, 503, 5, 218, 0, 0, 503, 508, 3, 70, 35, 0, 504, 505, 5, 206, 0, 0, 505, 507, 3, 70, 35, 0, 506, 504, 1, 0, 0, 0, 507, 510, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 511, 512, 5, 229, 0, 0, 512, 521, 1, 0, 0, 0, 513, 514, 3, 116, 58, 0, 514, 516, 5, 218, 0, 0, 515, 517, 3, 72, 36, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 5, 229, 0, 0, 519, 521, 1, 0, 0, 0, 520, 473, 1, 0, 0, 0, 520, 474, 1, 0, 0, 0, 520, 489, 1, 0, 0, 0, 520, 501, 1, 0, 0, 0, 520, 513, 1, 0, 0, 0, 521, 71, 1, 0, 0, 0, 522, 527, 3, 74, 37, 0, 523, 524, 5, 206, 0, 0, 524, 526, 3, 74, 37, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 73, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 531, 6, 37, -1, 0, 531, 533, 5, 19, 0, 0, 532, 534, 3, 74, 37, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 540, 1, 0, 0, 0, 535, 536, 5, 186, 0, 0, 536, 537, 3, 74, 37, 0, 537, 538, 5, 163, 0, 0, 538, 539, 3, 74, 37, 0, 539, 541, 1, 0, 0, 0, 540, 535, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 545, 5, 52, 0, 0, 545, 547, 3, 74, 37, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 53, 0, 0, 549, 660, 1, 0, 0, 0, 550, 551, 5, 20, 0, 0, 551, 552, 5, 218, 0, 0, 552, 553, 3, 74, 37, 0, 553, 554, 5, 10, 0, 0, 554, 555, 3, 70, 35, 0, 555, 556, 5, 229, 0, 0, 556, 660, 1, 0, 0, 0, 557, 558, 5, 36, 0, 0, 558, 660, 5, 199, 0, 0, 559, 560, 5, 59, 0, 0, 560, 561, 5, 218, 0, 0, 561, 562, 3, 108, 54, 0, 562, 563, 5, 68, 0, 0, 563, 564, 3, 74, 37, 0, 564, 565, 5, 229, 0, 0, 565, 660, 1, 0, 0, 0, 566, 567, 5, 86, 0, 0, 567, 568, 3, 74, 37, 0, 568, 569, 3, 108, 54, 0, 569, 660, 1, 0, 0, 0, 570, 571, 5, 155, 0, 0, 571, 572, 5, 218, 0, 0, 572, 573, 3, 74, 37, 0, 573, 574, 5, 68, 0, 0, 574, 577, 3, 74, 37, 0, 575, 576, 5, 65, 0, 0, 576, 578, 3, 74, 37, 0, 577, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 5, 229, 0, 0, 580, 660, 1, 0, 0, 0, 581, 582, 5, 166, 0, 0, 582, 660, 5, 199, 0, 0, 583, 584, 5, 171, 0, 0, 584, 585, 5, 218, 0, 0, 585, 586, 7, 9, 0, 0, 586, 587, 5, 199, 0, 0, 587, 588, 5, 68, 0, 0, 588, 589, 3, 74, 37, 0, 589, 590, 5, 229, 0, 0, 590, 660, 1, 0, 0, 0, 591, 592, 3, 116, 58, 0, 592, 594, 5, 218, 0, 0, 593, 595, 3, 72, 36, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 229, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 125, 0, 0, 599, 600, 5, 218, 0, 0, 600, 601, 3, 56, 28, 0, 601, 602, 5, 229, 0, 0, 602, 660, 1, 0, 0, 0, 603, 604, 3, 116, 58, 0, 604, 606, 5, 218, 0, 0, 605, 607, 3, 72, 36, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 5, 229, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 125, 0, 0, 611, 612, 3, 116, 58, 0, 612, 660, 1, 0, 0, 0, 613, 619, 3, 116, 58, 0, 614, 616, 5, 218, 0, 0, 615, 617, 3, 72, 36, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 5, 229, 0, 0, 619, 614, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 5, 218, 0, 0, 622, 624, 5, 49, 0, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 627, 3, 76, 38, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 229, 0, 0, 629, 660, 1, 0, 0, 0, 630, 660, 3, 106, 53, 0, 631, 632, 5, 208, 0, 0, 632, 660, 3, 74, 37, 17, 633, 634, 5, 115, 0, 0, 634, 660, 3, 74, 37, 12, 635, 636, 3, 94, 47, 0, 636, 637, 5, 210, 0, 0, 637, 639, 1, 0, 0, 0, 638, 635, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 660, 5, 202, 0, 0, 641, 642, 5, 218, 0, 0, 642, 643, 3, 2, 1, 0, 643, 644, 5, 229, 0, 0, 644, 660, 1, 0, 0, 0, 645, 646, 5, 218, 0, 0, 646, 647, 3, 74, 37, 0, 647, 648, 5, 229, 0, 0, 648, 660, 1, 0, 0, 0, 649, 650, 5, 218, 0, 0, 650, 651, 3, 72, 36, 0, 651, 652, 5, 229, 0, 0, 652, 660, 1, 0, 0, 0, 653, 655, 5, 217, 0, 0, 654, 656, 3, 72, 36, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 5, 228, 0, 0, 658, 660, 3, 86, 43, 0, 659, 530, 1, 0, 0, 0, 659, 550, 1, 0, 0, 0, 659, 557, 1, 0, 0, 0, 659, 559, 1, 0, 0, 0, 659, 566, 1, 0, 0, 0, 659, 570, 1, 0, 0, 0, 659, 581, 1, 0, 0, 0, 659, 583, 1, 0, 0, 0, 659, 591, 1, 0, 0, 0, 659, 603, 1, 0, 0, 0, 659, 613, 1, 0, 0, 0, 659, 630, 1, 0, 0, 0, 659, 631, 1, 0, 0, 0, 659, 633, 1, 0, 0, 0, 659, 638, 1, 0, 0, 0, 659, 641, 1, 0, 0, 0, 659, 645, 1, 0, 0, 0, 659, 649, 1, 0, 0, 0, 659, 653, 1, 0, 0, 0, 659, 658, 1, 0, 0, 0, 660, 745, 1, 0, 0, 0, 661, 665, 10, 16, 0, 0, 662, 666, 5, 202, 0, 0, 663, 666, 5, 231, 0, 0, 664, 666, 5, 222, 0, 0, 665, 662, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 744, 3, 74, 37, 17, 668, 672, 10, 15, 0, 0, 669, 673, 5, 223, 0, 0, 670, 673, 5, 208, 0, 0, 671, 673, 5, 207, 0, 0, 672, 669, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 744, 3, 74, 37, 16, 675, 694, 10, 14, 0, 0, 676, 695, 5, 211, 0, 0, 677, 695, 5, 212, 0, 0, 678, 695, 5, 221, 0, 0, 679, 695, 5, 219, 0, 0, 680, 695, 5, 220, 0, 0, 681, 695, 5, 213, 0, 0, 682, 695, 5, 214, 0, 0, 683, 685, 5, 115, 0, 0, 684, 683, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 5, 80, 0, 0, 687, 689, 5, 25, 0, 0, 688, 687, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 695, 1, 0, 0, 0, 690, 692, 5, 115, 0, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 695, 7, 10, 0, 0, 694, 676, 1, 0, 0, 0, 694, 677, 1, 0, 0, 0, 694, 678, 1, 0, 0, 0, 694, 679, 1, 0, 0, 0, 694, 680, 1, 0, 0, 0, 694, 681, 1, 0, 0, 0, 694, 682, 1, 0, 0, 0, 694, 684, 1, 0, 0, 0, 694, 691, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 744, 3, 74, 37, 15, 697, 698, 10, 11, 0, 0, 698, 699, 5, 6, 0, 0, 699, 744, 3, 74, 37, 12, 700, 701, 10, 10, 0, 0, 701, 702, 5, 121, 0, 0, 702, 744, 3, 74, 37, 11, 703, 705, 10, 9, 0, 0, 704, 706, 5, 115, 0, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 5, 16, 0, 0, 708, 709, 3, 74, 37, 0, 709, 710, 5, 6, 0, 0, 710, 711, 3, 74, 37, 10, 711, 744, 1, 0, 0, 0, 712, 713, 10, 8, 0, 0, 713, 714, 5, 224, 0, 0, 714, 715, 3, 74, 37, 0, 715, 716, 5, 205, 0, 0, 716, 717, 3, 74, 37, 8, 717, 744, 1, 0, 0, 0, 718, 719, 10, 20, 0, 0, 719, 720, 5, 217, 0, 0, 720, 721, 3, 74, 37, 0, 721, 722, 5, 228, 0, 0, 722, 744, 1, 0, 0, 0, 723, 724, 10, 19, 0, 0, 724, 725, 5, 210, 0, 0, 725, 744, 5, 197, 0, 0, 726, 727, 10, 18, 0, 0, 727, 728, 5, 210, 0, 0, 728, 744, 3, 116, 58, 0, 729, 730, 10, 13, 0, 0, 730, 732, 5, 88, 0, 0, 731, 733, 5, 115, 0, 0, 732, 731, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 744, 5, 116, 0, 0, 735, 741, 10, 7, 0, 0, 736, 742, 3, 114, 57, 0, 737, 738, 5, 10, 0, 0, 738, 742, 3, 116, 58, 0, 739, 740, 5, 10, 0, 0, 740, 742, 5, 199, 0, 0, 741, 736, 1, 0, 0, 0, 741, 737, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 1, 0, 0, 0, 743, 661, 1, 0, 0, 0, 743, 668, 1, 0, 0, 0, 743, 675, 1, 0, 0, 0, 743, 697, 1, 0, 0, 0, 743, 700, 1, 0, 0, 0, 743, 703, 1, 0, 0, 0, 743, 712, 1, 0, 0, 0, 743, 718, 1, 0, 0, 0, 743, 723, 1, 0, 0, 0, 743, 726, 1, 0, 0, 0, 743, 729, 1, 0, 0, 0, 743, 735, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 75, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 753, 3, 78, 39, 0, 749, 750, 5, 206, 0, 0, 750, 752, 3, 78, 39, 0, 751, 749, 1, 0, 0, 0, 752, 755, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 77, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 759, 3, 80, 40, 0, 757, 759, 3, 74, 37, 0, 758, 756, 1, 0, 0, 0, 758, 757, 1, 0, 0, 0, 759, 79, 1, 0, 0, 0, 760, 761, 5, 218, 0, 0, 761, 766, 3, 116, 58, 0, 762, 763, 5, 206, 0, 0, 763, 765, 3, 116, 58, 0, 764, 762, 1, 0, 0, 0, 765, 768, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 769, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 769, 770, 5, 229, 0, 0, 770, 780, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 206, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 760, 1, 0, 0, 0, 779, 771, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 5, 201, 0, 0, 782, 783, 3, 74, 37, 0, 783, 81, 1, 0, 0, 0, 784, 789, 3, 84, 42, 0, 785, 786, 5, 206, 0, 0, 786, 788, 3, 84, 42, 0, 787, 785, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 83, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 3, 116, 58, 0, 793, 794, 5, 10, 0, 0, 794, 795, 5, 218, 0, 0, 795, 796, 3, 2, 1, 0, 796, 797, 5, 229, 0, 0, 797, 803, 1, 0, 0, 0, 798, 799, 3, 74, 37, 0, 799, 800, 5, 10, 0, 0, 800, 801, 3, 116, 58, 0, 801, 803, 1, 0, 0, 0, 802, 792, 1, 0, 0, 0, 802, 798, 1, 0, 0, 0, 803, 85, 1, 0, 0, 0, 804, 812, 5, 200, 0, 0, 805, 806, 3, 94, 47, 0, 806, 807, 5, 210, 0, 0, 807, 809, 1, 0, 0, 0, 808, 805, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 812, 3, 88, 44, 0, 811, 804, 1, 0, 0, 0, 811, 808, 1, 0, 0, 0, 812, 87, 1, 0, 0, 0, 813, 818, 3, 116, 58, 0, 814, 815, 5, 210, 0, 0, 815, 817, 3, 116, 58, 0, 816, 814, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 89, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 822, 6, 45, -1, 0, 822, 829, 3, 94, 47, 0, 823, 829, 3, 92, 46, 0, 824, 825, 5, 218, 0, 0, 825, 826, 3, 2, 1, 0, 826, 827, 5, 229, 0, 0, 827, 829, 1, 0, 0, 0, 828, 821, 1, 0, 0, 0, 828, 823, 1, 0, 0, 0, 828, 824, 1, 0, 0, 0, 829, 838, 1, 0, 0, 0, 830, 834, 10, 1, 0, 0, 831, 835, 3, 114, 57, 0, 832, 833, 5, 10, 0, 0, 833, 835, 3, 116, 58, 0, 834, 831, 1, 0, 0, 0, 834, 832, 1, 0, 0, 0, 835, 837, 1, 0, 0, 0, 836, 830, 1, 0, 0, 0, 837, 840, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 91, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 842, 3, 116, 58, 0, 842, 844, 5, 218, 0, 0, 843, 845, 3, 96, 48, 0, 844, 843, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 5, 229, 0, 0, 847, 93, 1, 0, 0, 0, 848, 849, 3, 100, 50, 0, 849, 850, 5, 210, 0, 0, 850, 852, 1, 0, 0, 0, 851, 848, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 3, 116, 58, 0, 854, 95, 1, 0, 0, 0, 855, 860, 3, 98, 49, 0, 856, 857, 5, 206, 0, 0, 857, 859, 3, 98, 49, 0, 858, 856, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 97, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 863, 867, 3, 88, 44, 0, 864, 867, 3, 92, 46, 0, 865, 867, 3, 106, 53, 0, 866, 863, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 866, 865, 1, 0, 0, 0, 867, 99, 1, 0, 0, 0, 868, 869, 3, 116, 58, 0, 869, 101, 1, 0, 0, 0, 870, 879, 5, 195, 0, 0, 871, 872, 5, 210, 0, 0, 872, 879, 7, 11, 0, 0, 873, 874, 5, 197, 0, 0, 874, 876, 5, 210, 0, 0, 875, 877, 7, 11, 0, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 879, 1, 0, 0, 0, 878, 870, 1, 0, 0, 0, 878, 871, 1, 0, 0, 0, 878, 873, 1, 0, 0, 0, 879, 103, 1, 0, 0, 0, 880, 882, 7, 12, 0, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 889, 1, 0, 0, 0, 883, 890, 3, 102, 51, 0, 884, 890, 5, 196, 0, 0, 885, 890, 5, 197, 0, 0, 886, 890, 5, 198, 0, 0, 887, 890, 5, 82, 0, 0, 888, 890, 5, 113, 0, 0, 889, 883, 1, 0, 0, 0, 889, 884, 1, 0, 0, 0, 889, 885, 1, 0, 0, 0, 889, 886, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 888, 1, 0, 0, 0, 890, 105, 1, 0, 0, 0, 891, 895, 3, 104, 52, 0, 892, 895, 5, 199, 0, 0, 893, 895, 5, 116, 0, 0, 894, 891, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 894, 893, 1, 0, 0, 0, 895, 107, 1, 0, 0, 0, 896, 897, 7, 13, 0, 0, 897, 109, 1, 0, 0, 0, 898, 899, 7, 14, 0, 0, 899, 111, 1, 0, 0, 0, 900, 901, 7, 15, 0, 0, 901, 113, 1, 0, 0, 0, 902, 905, 5, 194, 0, 0, 903, 905, 3, 112, 56, 0, 904, 902, 1, 0, 0, 0, 904, 903, 1, 0, 0, 0, 905, 115, 1, 0, 0, 0, 906, 910, 5, 194, 0, 0, 907, 910, 3, 108, 54, 0, 908, 910, 3, 110, 55, 0, 909, 906, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 908, 1, 0, 0, 0, 910, 117, 1, 0, 0, 0, 911, 912, 5, 199, 0, 0, 912, 913, 5, 212, 0, 0, 913, 914, 3, 104, 52, 0, 914, 119, 1, 0, 0, 0, 115, 122, 132, 140, 143, 147, 150, 154, 157, 160, 163, 166, 170, 174, 177, 180, 183, 187, 190, 199, 205, 226, 243, 260, 266, 272, 283, 285, 296, 299, 305, 313, 319, 321, 325, 330, 333, 336, 340, 344, 347, 349, 352, 356, 360, 363, 365, 367, 372, 383, 389, 396, 401, 405, 409, 414, 421, 429, 432, 435, 454, 468, 484, 496, 508, 516, 520, 527, 533, 542, 546, 577, 594, 606, 616, 619, 623, 626, 638, 655, 659, 665, 672, 684, 688, 691, 694, 705, 732, 741, 743, 745, 753, 758, 766, 776, 779, 789, 802, 808, 811, 818, 828, 834, 838, 844, 851, 860, 866, 876, 878, 881, 889, 894, 904, 909] \ No newline at end of file diff --git a/posthog/hogql/grammar/HogQLParser.py b/posthog/hogql/grammar/HogQLParser.py index 95d689b5f7331..8234400a5d326 100644 --- a/posthog/hogql/grammar/HogQLParser.py +++ b/posthog/hogql/grammar/HogQLParser.py @@ -116,7 +116,7 @@ def serializedATN(): 1,1,0,0,0,126,132,3,4,2,0,127,128,5,176,0,0,128,129,5,4,0,0,129, 131,3,4,2,0,130,127,1,0,0,0,131,134,1,0,0,0,132,130,1,0,0,0,132, 133,1,0,0,0,133,3,1,0,0,0,134,132,1,0,0,0,135,141,3,6,3,0,136,137, - 5,219,0,0,137,138,3,2,1,0,138,139,5,229,0,0,139,141,1,0,0,0,140, + 5,218,0,0,137,138,3,2,1,0,138,139,5,229,0,0,139,141,1,0,0,0,140, 135,1,0,0,0,140,136,1,0,0,0,141,5,1,0,0,0,142,144,3,8,4,0,143,142, 1,0,0,0,143,144,1,0,0,0,144,145,1,0,0,0,145,147,5,146,0,0,146,148, 5,49,0,0,147,146,1,0,0,0,147,148,1,0,0,0,148,150,1,0,0,0,149,151, @@ -140,14 +140,14 @@ def serializedATN(): 0,0,202,203,3,36,18,0,203,13,1,0,0,0,204,206,7,1,0,0,205,204,1,0, 0,0,205,206,1,0,0,0,206,207,1,0,0,0,207,208,5,9,0,0,208,209,5,90, 0,0,209,210,3,72,36,0,210,15,1,0,0,0,211,212,5,188,0,0,212,213,3, - 116,58,0,213,214,5,10,0,0,214,215,5,219,0,0,215,216,3,56,28,0,216, + 116,58,0,213,214,5,10,0,0,214,215,5,218,0,0,215,216,3,56,28,0,216, 226,5,229,0,0,217,218,5,206,0,0,218,219,3,116,58,0,219,220,5,10, - 0,0,220,221,5,219,0,0,221,222,3,56,28,0,222,223,5,229,0,0,223,225, + 0,0,220,221,5,218,0,0,221,222,3,56,28,0,222,223,5,229,0,0,223,225, 1,0,0,0,224,217,1,0,0,0,225,228,1,0,0,0,226,224,1,0,0,0,226,227, 1,0,0,0,227,17,1,0,0,0,228,226,1,0,0,0,229,230,5,129,0,0,230,231, 3,74,37,0,231,19,1,0,0,0,232,233,5,187,0,0,233,234,3,74,37,0,234, 21,1,0,0,0,235,236,5,73,0,0,236,243,5,18,0,0,237,238,7,0,0,0,238, - 239,5,219,0,0,239,240,3,72,36,0,240,241,5,229,0,0,241,244,1,0,0, + 239,5,218,0,0,239,240,3,72,36,0,240,241,5,229,0,0,241,244,1,0,0, 0,242,244,3,72,36,0,243,237,1,0,0,0,243,242,1,0,0,0,244,23,1,0,0, 0,245,246,5,74,0,0,246,247,3,74,37,0,247,25,1,0,0,0,248,249,5,122, 0,0,249,250,5,18,0,0,250,251,3,46,23,0,251,27,1,0,0,0,252,253,5, @@ -166,7 +166,7 @@ def serializedATN(): 26,0,292,35,1,0,0,0,293,294,6,18,-1,0,294,296,3,90,45,0,295,297, 5,61,0,0,296,295,1,0,0,0,296,297,1,0,0,0,297,299,1,0,0,0,298,300, 3,44,22,0,299,298,1,0,0,0,299,300,1,0,0,0,300,306,1,0,0,0,301,302, - 5,219,0,0,302,303,3,36,18,0,303,304,5,229,0,0,304,306,1,0,0,0,305, + 5,218,0,0,302,303,3,36,18,0,303,304,5,229,0,0,304,306,1,0,0,0,305, 293,1,0,0,0,305,301,1,0,0,0,306,321,1,0,0,0,307,308,10,3,0,0,308, 309,3,40,20,0,309,310,3,36,18,4,310,320,1,0,0,0,311,313,10,4,0,0, 312,314,3,38,19,0,313,312,1,0,0,0,313,314,1,0,0,0,314,315,1,0,0, @@ -190,7 +190,7 @@ def serializedATN(): 1,0,0,0,367,333,1,0,0,0,367,349,1,0,0,0,367,365,1,0,0,0,368,39,1, 0,0,0,369,370,5,31,0,0,370,373,5,90,0,0,371,373,5,206,0,0,372,369, 1,0,0,0,372,371,1,0,0,0,373,41,1,0,0,0,374,375,5,119,0,0,375,384, - 3,72,36,0,376,377,5,179,0,0,377,378,5,219,0,0,378,379,3,72,36,0, + 3,72,36,0,376,377,5,179,0,0,377,378,5,218,0,0,378,379,3,72,36,0, 379,380,5,229,0,0,380,384,1,0,0,0,381,382,5,179,0,0,382,384,3,72, 36,0,383,374,1,0,0,0,383,376,1,0,0,0,383,381,1,0,0,0,384,43,1,0, 0,0,385,386,5,144,0,0,386,389,3,50,25,0,387,388,5,118,0,0,388,390, @@ -220,18 +220,18 @@ def serializedATN(): 0,0,467,469,1,0,0,0,468,456,1,0,0,0,468,458,1,0,0,0,468,460,1,0, 0,0,468,462,1,0,0,0,468,465,1,0,0,0,469,67,1,0,0,0,470,471,3,74, 37,0,471,472,5,0,0,1,472,69,1,0,0,0,473,521,3,116,58,0,474,475,3, - 116,58,0,475,476,5,219,0,0,476,477,3,116,58,0,477,484,3,70,35,0, + 116,58,0,475,476,5,218,0,0,476,477,3,116,58,0,477,484,3,70,35,0, 478,479,5,206,0,0,479,480,3,116,58,0,480,481,3,70,35,0,481,483,1, 0,0,0,482,478,1,0,0,0,483,486,1,0,0,0,484,482,1,0,0,0,484,485,1, 0,0,0,485,487,1,0,0,0,486,484,1,0,0,0,487,488,5,229,0,0,488,521, - 1,0,0,0,489,490,3,116,58,0,490,491,5,219,0,0,491,496,3,118,59,0, + 1,0,0,0,489,490,3,116,58,0,490,491,5,218,0,0,491,496,3,118,59,0, 492,493,5,206,0,0,493,495,3,118,59,0,494,492,1,0,0,0,495,498,1,0, 0,0,496,494,1,0,0,0,496,497,1,0,0,0,497,499,1,0,0,0,498,496,1,0, 0,0,499,500,5,229,0,0,500,521,1,0,0,0,501,502,3,116,58,0,502,503, - 5,219,0,0,503,508,3,70,35,0,504,505,5,206,0,0,505,507,3,70,35,0, + 5,218,0,0,503,508,3,70,35,0,504,505,5,206,0,0,505,507,3,70,35,0, 506,504,1,0,0,0,507,510,1,0,0,0,508,506,1,0,0,0,508,509,1,0,0,0, 509,511,1,0,0,0,510,508,1,0,0,0,511,512,5,229,0,0,512,521,1,0,0, - 0,513,514,3,116,58,0,514,516,5,219,0,0,515,517,3,72,36,0,516,515, + 0,513,514,3,116,58,0,514,516,5,218,0,0,515,517,3,72,36,0,516,515, 1,0,0,0,516,517,1,0,0,0,517,518,1,0,0,0,518,519,5,229,0,0,519,521, 1,0,0,0,520,473,1,0,0,0,520,474,1,0,0,0,520,489,1,0,0,0,520,501, 1,0,0,0,520,513,1,0,0,0,521,71,1,0,0,0,522,527,3,74,37,0,523,524, @@ -243,35 +243,35 @@ def serializedATN(): 0,0,541,542,1,0,0,0,542,540,1,0,0,0,542,543,1,0,0,0,543,546,1,0, 0,0,544,545,5,52,0,0,545,547,3,74,37,0,546,544,1,0,0,0,546,547,1, 0,0,0,547,548,1,0,0,0,548,549,5,53,0,0,549,660,1,0,0,0,550,551,5, - 20,0,0,551,552,5,219,0,0,552,553,3,74,37,0,553,554,5,10,0,0,554, + 20,0,0,551,552,5,218,0,0,552,553,3,74,37,0,553,554,5,10,0,0,554, 555,3,70,35,0,555,556,5,229,0,0,556,660,1,0,0,0,557,558,5,36,0,0, - 558,660,5,199,0,0,559,560,5,59,0,0,560,561,5,219,0,0,561,562,3,108, + 558,660,5,199,0,0,559,560,5,59,0,0,560,561,5,218,0,0,561,562,3,108, 54,0,562,563,5,68,0,0,563,564,3,74,37,0,564,565,5,229,0,0,565,660, 1,0,0,0,566,567,5,86,0,0,567,568,3,74,37,0,568,569,3,108,54,0,569, - 660,1,0,0,0,570,571,5,155,0,0,571,572,5,219,0,0,572,573,3,74,37, + 660,1,0,0,0,570,571,5,155,0,0,571,572,5,218,0,0,572,573,3,74,37, 0,573,574,5,68,0,0,574,577,3,74,37,0,575,576,5,65,0,0,576,578,3, 74,37,0,577,575,1,0,0,0,577,578,1,0,0,0,578,579,1,0,0,0,579,580, 5,229,0,0,580,660,1,0,0,0,581,582,5,166,0,0,582,660,5,199,0,0,583, - 584,5,171,0,0,584,585,5,219,0,0,585,586,7,9,0,0,586,587,5,199,0, + 584,5,171,0,0,584,585,5,218,0,0,585,586,7,9,0,0,586,587,5,199,0, 0,587,588,5,68,0,0,588,589,3,74,37,0,589,590,5,229,0,0,590,660,1, - 0,0,0,591,592,3,116,58,0,592,594,5,219,0,0,593,595,3,72,36,0,594, + 0,0,0,591,592,3,116,58,0,592,594,5,218,0,0,593,595,3,72,36,0,594, 593,1,0,0,0,594,595,1,0,0,0,595,596,1,0,0,0,596,597,5,229,0,0,597, - 598,1,0,0,0,598,599,5,125,0,0,599,600,5,219,0,0,600,601,3,56,28, + 598,1,0,0,0,598,599,5,125,0,0,599,600,5,218,0,0,600,601,3,56,28, 0,601,602,5,229,0,0,602,660,1,0,0,0,603,604,3,116,58,0,604,606,5, - 219,0,0,605,607,3,72,36,0,606,605,1,0,0,0,606,607,1,0,0,0,607,608, + 218,0,0,605,607,3,72,36,0,606,605,1,0,0,0,606,607,1,0,0,0,607,608, 1,0,0,0,608,609,5,229,0,0,609,610,1,0,0,0,610,611,5,125,0,0,611, - 612,3,116,58,0,612,660,1,0,0,0,613,619,3,116,58,0,614,616,5,219, + 612,3,116,58,0,612,660,1,0,0,0,613,619,3,116,58,0,614,616,5,218, 0,0,615,617,3,72,36,0,616,615,1,0,0,0,616,617,1,0,0,0,617,618,1, 0,0,0,618,620,5,229,0,0,619,614,1,0,0,0,619,620,1,0,0,0,620,621, - 1,0,0,0,621,623,5,219,0,0,622,624,5,49,0,0,623,622,1,0,0,0,623,624, + 1,0,0,0,621,623,5,218,0,0,622,624,5,49,0,0,623,622,1,0,0,0,623,624, 1,0,0,0,624,626,1,0,0,0,625,627,3,76,38,0,626,625,1,0,0,0,626,627, 1,0,0,0,627,628,1,0,0,0,628,629,5,229,0,0,629,660,1,0,0,0,630,660, 3,106,53,0,631,632,5,208,0,0,632,660,3,74,37,17,633,634,5,115,0, 0,634,660,3,74,37,12,635,636,3,94,47,0,636,637,5,210,0,0,637,639, 1,0,0,0,638,635,1,0,0,0,638,639,1,0,0,0,639,640,1,0,0,0,640,660, - 5,202,0,0,641,642,5,219,0,0,642,643,3,2,1,0,643,644,5,229,0,0,644, - 660,1,0,0,0,645,646,5,219,0,0,646,647,3,74,37,0,647,648,5,229,0, - 0,648,660,1,0,0,0,649,650,5,219,0,0,650,651,3,72,36,0,651,652,5, + 5,202,0,0,641,642,5,218,0,0,642,643,3,2,1,0,643,644,5,229,0,0,644, + 660,1,0,0,0,645,646,5,218,0,0,646,647,3,74,37,0,647,648,5,229,0, + 0,648,660,1,0,0,0,649,650,5,218,0,0,650,651,3,72,36,0,651,652,5, 229,0,0,652,660,1,0,0,0,653,655,5,217,0,0,654,656,3,72,36,0,655, 654,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,660,5,228,0,0,658, 660,3,86,43,0,659,530,1,0,0,0,659,550,1,0,0,0,659,557,1,0,0,0,659, @@ -285,8 +285,8 @@ def serializedATN(): 15,0,0,669,673,5,223,0,0,670,673,5,208,0,0,671,673,5,207,0,0,672, 669,1,0,0,0,672,670,1,0,0,0,672,671,1,0,0,0,673,674,1,0,0,0,674, 744,3,74,37,16,675,694,10,14,0,0,676,695,5,211,0,0,677,695,5,212, - 0,0,678,695,5,221,0,0,679,695,5,218,0,0,680,695,5,213,0,0,681,695, - 5,220,0,0,682,695,5,214,0,0,683,685,5,115,0,0,684,683,1,0,0,0,684, + 0,0,678,695,5,221,0,0,679,695,5,219,0,0,680,695,5,220,0,0,681,695, + 5,213,0,0,682,695,5,214,0,0,683,685,5,115,0,0,684,683,1,0,0,0,684, 685,1,0,0,0,685,686,1,0,0,0,686,688,5,80,0,0,687,689,5,25,0,0,688, 687,1,0,0,0,688,689,1,0,0,0,689,695,1,0,0,0,690,692,5,115,0,0,691, 690,1,0,0,0,691,692,1,0,0,0,692,693,1,0,0,0,693,695,7,10,0,0,694, @@ -313,7 +313,7 @@ def serializedATN(): 747,745,1,0,0,0,748,753,3,78,39,0,749,750,5,206,0,0,750,752,3,78, 39,0,751,749,1,0,0,0,752,755,1,0,0,0,753,751,1,0,0,0,753,754,1,0, 0,0,754,77,1,0,0,0,755,753,1,0,0,0,756,759,3,80,40,0,757,759,3,74, - 37,0,758,756,1,0,0,0,758,757,1,0,0,0,759,79,1,0,0,0,760,761,5,219, + 37,0,758,756,1,0,0,0,758,757,1,0,0,0,759,79,1,0,0,0,760,761,5,218, 0,0,761,766,3,116,58,0,762,763,5,206,0,0,763,765,3,116,58,0,764, 762,1,0,0,0,765,768,1,0,0,0,766,764,1,0,0,0,766,767,1,0,0,0,767, 769,1,0,0,0,768,766,1,0,0,0,769,770,5,229,0,0,770,780,1,0,0,0,771, @@ -323,7 +323,7 @@ def serializedATN(): 0,0,781,782,5,201,0,0,782,783,3,74,37,0,783,81,1,0,0,0,784,789,3, 84,42,0,785,786,5,206,0,0,786,788,3,84,42,0,787,785,1,0,0,0,788, 791,1,0,0,0,789,787,1,0,0,0,789,790,1,0,0,0,790,83,1,0,0,0,791,789, - 1,0,0,0,792,793,3,116,58,0,793,794,5,10,0,0,794,795,5,219,0,0,795, + 1,0,0,0,792,793,3,116,58,0,793,794,5,10,0,0,794,795,5,218,0,0,795, 796,3,2,1,0,796,797,5,229,0,0,797,803,1,0,0,0,798,799,3,74,37,0, 799,800,5,10,0,0,800,801,3,116,58,0,801,803,1,0,0,0,802,792,1,0, 0,0,802,798,1,0,0,0,803,85,1,0,0,0,804,812,5,200,0,0,805,806,3,94, @@ -332,13 +332,13 @@ def serializedATN(): 1,0,0,0,812,87,1,0,0,0,813,818,3,116,58,0,814,815,5,210,0,0,815, 817,3,116,58,0,816,814,1,0,0,0,817,820,1,0,0,0,818,816,1,0,0,0,818, 819,1,0,0,0,819,89,1,0,0,0,820,818,1,0,0,0,821,822,6,45,-1,0,822, - 829,3,94,47,0,823,829,3,92,46,0,824,825,5,219,0,0,825,826,3,2,1, + 829,3,94,47,0,823,829,3,92,46,0,824,825,5,218,0,0,825,826,3,2,1, 0,826,827,5,229,0,0,827,829,1,0,0,0,828,821,1,0,0,0,828,823,1,0, 0,0,828,824,1,0,0,0,829,838,1,0,0,0,830,834,10,1,0,0,831,835,3,114, 57,0,832,833,5,10,0,0,833,835,3,116,58,0,834,831,1,0,0,0,834,832, 1,0,0,0,835,837,1,0,0,0,836,830,1,0,0,0,837,840,1,0,0,0,838,836, 1,0,0,0,838,839,1,0,0,0,839,91,1,0,0,0,840,838,1,0,0,0,841,842,3, - 116,58,0,842,844,5,219,0,0,843,845,3,96,48,0,844,843,1,0,0,0,844, + 116,58,0,842,844,5,218,0,0,843,845,3,96,48,0,844,843,1,0,0,0,844, 845,1,0,0,0,845,846,1,0,0,0,846,847,5,229,0,0,847,93,1,0,0,0,848, 849,3,100,50,0,849,850,5,210,0,0,850,852,1,0,0,0,851,848,1,0,0,0, 851,852,1,0,0,0,852,853,1,0,0,0,853,854,3,116,58,0,854,95,1,0,0, @@ -434,7 +434,7 @@ class HogQLParser ( Parser ): "", "", "", "", "'->'", "'*'", "'`'", "'\\'", "':'", "','", "'||'", "'-'", "'$'", "'.'", "'=='", "'='", "'>='", "'>'", - "'#'", "'{'", "'['", "'<='", "'('", "'<'", "", + "'#'", "'{'", "'['", "'('", "'<='", "'<'", "", "'%'", "'+'", "'?'", "'\"'", "'''", "'}'", "']'", "')'", "';'", "'/'", "'_'" ] @@ -477,8 +477,8 @@ class HogQLParser ( Parser ): "DECIMAL_LITERAL", "HEXADECIMAL_LITERAL", "STRING_LITERAL", "PLACEHOLDER", "ARROW", "ASTERISK", "BACKQUOTE", "BACKSLASH", "COLON", "COMMA", "CONCAT", "DASH", "DOLLAR", "DOT", - "EQ_DOUBLE", "EQ_SINGLE", "GE", "GT", "HASH", "LBRACE", - "LBRACKET", "LE", "LPAREN", "LT", "NOT_EQ", "PERCENT", + "EQ_DOUBLE", "EQ_SINGLE", "GT_EQ", "GT", "HASH", "LBRACE", + "LBRACKET", "LPAREN", "LT_EQ", "LT", "NOT_EQ", "PERCENT", "PLUS", "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", "RBRACE", "RBRACKET", "RPAREN", "SEMICOLON", "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", "WHITESPACE" ] @@ -776,13 +776,13 @@ class HogQLParser ( Parser ): DOT=210 EQ_DOUBLE=211 EQ_SINGLE=212 - GE=213 + GT_EQ=213 GT=214 HASH=215 LBRACE=216 LBRACKET=217 - LE=218 - LPAREN=219 + LPAREN=218 + LT_EQ=219 LT=220 NOT_EQ=221 PERCENT=222 @@ -986,7 +986,7 @@ def selectStmtWithParens(self): self.state = 135 self.selectStmt() pass - elif token in [219]: + elif token in [218]: self.enterOuterAlt(localctx, 2) self.state = 136 self.match(HogQLParser.LPAREN) @@ -3930,7 +3930,7 @@ def columnTypeExpr(self): self.state = 516 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2315585021) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): self.state = 515 self.columnExprList() @@ -4345,12 +4345,12 @@ def EQ_SINGLE(self): return self.getToken(HogQLParser.EQ_SINGLE, 0) def NOT_EQ(self): return self.getToken(HogQLParser.NOT_EQ, 0) - def LE(self): - return self.getToken(HogQLParser.LE, 0) - def GE(self): - return self.getToken(HogQLParser.GE, 0) + def LT_EQ(self): + return self.getToken(HogQLParser.LT_EQ, 0) def LT(self): return self.getToken(HogQLParser.LT, 0) + def GT_EQ(self): + return self.getToken(HogQLParser.GT_EQ, 0) def GT(self): return self.getToken(HogQLParser.GT, 0) def LIKE(self): @@ -5030,7 +5030,7 @@ def columnExpr(self, _p:int=0): self.state = 594 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2315585021) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): self.state = 593 self.columnExprList() @@ -5059,7 +5059,7 @@ def columnExpr(self, _p:int=0): self.state = 606 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2315585021) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): self.state = 605 self.columnExprList() @@ -5087,7 +5087,7 @@ def columnExpr(self, _p:int=0): self.state = 616 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2315585021) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): self.state = 615 self.columnExprList() @@ -5109,7 +5109,7 @@ def columnExpr(self, _p:int=0): self.state = 626 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2315585021) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): self.state = 625 self.columnArgList() @@ -5209,7 +5209,7 @@ def columnExpr(self, _p:int=0): self.state = 655 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2315585021) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): self.state = 654 self.columnExprList() @@ -5327,17 +5327,17 @@ def columnExpr(self, _p:int=0): elif la_ == 4: self.state = 679 - localctx.operator = self.match(HogQLParser.LE) + localctx.operator = self.match(HogQLParser.LT_EQ) pass elif la_ == 5: self.state = 680 - localctx.operator = self.match(HogQLParser.GE) + localctx.operator = self.match(HogQLParser.LT) pass elif la_ == 6: self.state = 681 - localctx.operator = self.match(HogQLParser.LT) + localctx.operator = self.match(HogQLParser.GT_EQ) pass elif la_ == 7: @@ -5739,7 +5739,7 @@ def columnLambdaExpr(self): self.state = 779 self._errHandler.sync(self) token = self._input.LA(1) - if token in [219]: + if token in [218]: self.state = 760 self.match(HogQLParser.LPAREN) self.state = 761 diff --git a/posthog/hogql/grammar/HogQLParser.tokens b/posthog/hogql/grammar/HogQLParser.tokens index d78d98b326afb..a8a2b718a1a0b 100644 --- a/posthog/hogql/grammar/HogQLParser.tokens +++ b/posthog/hogql/grammar/HogQLParser.tokens @@ -210,13 +210,13 @@ DOLLAR=209 DOT=210 EQ_DOUBLE=211 EQ_SINGLE=212 -GE=213 +GT_EQ=213 GT=214 HASH=215 LBRACE=216 LBRACKET=217 -LE=218 -LPAREN=219 +LPAREN=218 +LT_EQ=219 LT=220 NOT_EQ=221 PERCENT=222 @@ -252,8 +252,8 @@ WHITESPACE=235 '#'=215 '{'=216 '['=217 -'<='=218 -'('=219 +'('=218 +'<='=219 '<'=220 '%'=222 '+'=223 diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index 28a2a0bde1238..e13b595b72327 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -461,11 +461,11 @@ def visitColumnExprPrecedence3(self, ctx: HogQLParser.ColumnExprPrecedence3Conte op = ast.CompareOperationOp.NotEq elif ctx.LT(): op = ast.CompareOperationOp.Lt - elif ctx.LE(): + elif ctx.LT_EQ(): op = ast.CompareOperationOp.LtEq elif ctx.GT(): op = ast.CompareOperationOp.Gt - elif ctx.GE(): + elif ctx.GT_EQ(): op = ast.CompareOperationOp.GtEq elif ctx.LIKE(): if ctx.NOT(): From 7733b8730fce8c1df37e24b9db78671fd784bb69 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Tue, 27 Jun 2023 23:29:07 +0200 Subject: [PATCH 05/13] regex operators --- posthog/hogql/ast.py | 2 + .../test/__snapshots__/test_database.ambr | 28 +- posthog/hogql/grammar/HogQLLexer.g4 | 6 + posthog/hogql/grammar/HogQLLexer.interp | 20 +- posthog/hogql/grammar/HogQLLexer.py | 1741 +++++++++-------- posthog/hogql/grammar/HogQLLexer.tokens | 84 +- posthog/hogql/grammar/HogQLParser.g4 | 42 +- posthog/hogql/grammar/HogQLParser.interp | 14 +- posthog/hogql/grammar/HogQLParser.py | 1068 +++++----- posthog/hogql/grammar/HogQLParser.tokens | 84 +- posthog/hogql/parser.py | 8 + posthog/hogql/printer.py | 8 +- posthog/hogql/test/test_printer.py | 8 + 13 files changed, 1641 insertions(+), 1472 deletions(-) diff --git a/posthog/hogql/ast.py b/posthog/hogql/ast.py index 4680edd52c7ba..3fc8cb6fb8925 100644 --- a/posthog/hogql/ast.py +++ b/posthog/hogql/ast.py @@ -344,7 +344,9 @@ class CompareOperationOp(str, Enum): In = "in" NotIn = "not in" Regex = "=~" + IRegex = "=~*" NotRegex = "!~" + NotIRegex = "!~*" class CompareOperation(Expr): diff --git a/posthog/hogql/database/test/__snapshots__/test_database.ambr b/posthog/hogql/database/test/__snapshots__/test_database.ambr index 26a1b0fccd18d..fb75a395fe215 100644 --- a/posthog/hogql/database/test/__snapshots__/test_database.ambr +++ b/posthog/hogql/database/test/__snapshots__/test_database.ambr @@ -334,6 +334,10 @@ "key": "console_error_count", "type": "integer" }, + { + "key": "size", + "type": "integer" + }, { "key": "pdi", "type": "lazy_table", @@ -439,6 +443,10 @@ "key": "console_error_count", "type": "integer" }, + { + "key": "size", + "type": "integer" + }, { "key": "pdi", "type": "lazy_table", @@ -580,12 +588,6 @@ "key": "version", "type": "integer" } - ], - "whatever": [ - { - "key": "id", - "type": "string" - } ] } ' @@ -921,6 +923,10 @@ "key": "console_error_count", "type": "integer" }, + { + "key": "size", + "type": "integer" + }, { "key": "pdi", "type": "lazy_table", @@ -1026,6 +1032,10 @@ "key": "console_error_count", "type": "integer" }, + { + "key": "size", + "type": "integer" + }, { "key": "pdi", "type": "lazy_table", @@ -1167,12 +1177,6 @@ "key": "version", "type": "integer" } - ], - "whatever": [ - { - "key": "id", - "type": "string" - } ] } ' diff --git a/posthog/hogql/grammar/HogQLLexer.g4 b/posthog/hogql/grammar/HogQLLexer.g4 index 6d3fb40340e9c..3bda82e0c4da4 100644 --- a/posthog/hogql/grammar/HogQLLexer.g4 +++ b/posthog/hogql/grammar/HogQLLexer.g4 @@ -282,17 +282,23 @@ EQ_SINGLE: '='; GT_EQ: '>='; GT: '>'; HASH: '#'; +IREGEX_SINGLE: '~*'; +IREGEX_DOUBLE: '=~*'; LBRACE: '{'; LBRACKET: '['; LPAREN: '('; LT_EQ: '<='; LT: '<'; NOT_EQ: '!=' | '<>'; +NOT_IREGEX: '!~*'; +NOT_REGEX: '!~'; PERCENT: '%'; PLUS: '+'; QUERY: '?'; QUOTE_DOUBLE: '"'; QUOTE_SINGLE: '\''; +REGEX_SINGLE: '~'; +REGEX_DOUBLE: '=~'; RBRACE: '}'; RBRACKET: ']'; RPAREN: ')'; diff --git a/posthog/hogql/grammar/HogQLLexer.interp b/posthog/hogql/grammar/HogQLLexer.interp index 95f7d7682b29b..a56b2aec445df 100644 --- a/posthog/hogql/grammar/HogQLLexer.interp +++ b/posthog/hogql/grammar/HogQLLexer.interp @@ -215,17 +215,23 @@ null '>=' '>' '#' +'~*' +'=~*' '{' '[' '(' '<=' '<' null +'!~*' +'!~' '%' '+' '?' '"' '\'' +'~' +'=~' '}' ']' ')' @@ -453,17 +459,23 @@ EQ_SINGLE GT_EQ GT HASH +IREGEX_SINGLE +IREGEX_DOUBLE LBRACE LBRACKET LPAREN LT_EQ LT NOT_EQ +NOT_IREGEX +NOT_REGEX PERCENT PLUS QUERY QUOTE_DOUBLE QUOTE_SINGLE +REGEX_SINGLE +REGEX_DOUBLE RBRACE RBRACKET RPAREN @@ -720,17 +732,23 @@ EQ_SINGLE GT_EQ GT HASH +IREGEX_SINGLE +IREGEX_DOUBLE LBRACE LBRACKET LPAREN LT_EQ LT NOT_EQ +NOT_IREGEX +NOT_REGEX PERCENT PLUS QUERY QUOTE_DOUBLE QUOTE_SINGLE +REGEX_SINGLE +REGEX_DOUBLE RBRACE RBRACKET RPAREN @@ -749,4 +767,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 235, 2186, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 594, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1099, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 1813, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 1856, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 1861, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1867, 8, 193, 10, 193, 12, 193, 1870, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1878, 8, 193, 10, 193, 12, 193, 1881, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1891, 8, 193, 10, 193, 12, 193, 1894, 9, 193, 1, 193, 1, 193, 3, 193, 1898, 8, 193, 1, 194, 1, 194, 1, 194, 5, 194, 1903, 8, 194, 10, 194, 12, 194, 1906, 9, 194, 1, 194, 1, 194, 3, 194, 1910, 8, 194, 1, 194, 1, 194, 3, 194, 1914, 8, 194, 1, 194, 4, 194, 1917, 8, 194, 11, 194, 12, 194, 1918, 1, 194, 1, 194, 1, 194, 3, 194, 1924, 8, 194, 1, 194, 1, 194, 3, 194, 1928, 8, 194, 1, 194, 4, 194, 1931, 8, 194, 11, 194, 12, 194, 1932, 1, 194, 1, 194, 1, 194, 5, 194, 1938, 8, 194, 10, 194, 12, 194, 1941, 9, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1946, 8, 194, 1, 194, 4, 194, 1949, 8, 194, 11, 194, 12, 194, 1950, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1958, 8, 194, 1, 194, 4, 194, 1961, 8, 194, 11, 194, 12, 194, 1962, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1969, 8, 194, 1, 194, 4, 194, 1972, 8, 194, 11, 194, 12, 194, 1973, 3, 194, 1976, 8, 194, 1, 195, 1, 195, 4, 195, 1980, 8, 195, 11, 195, 12, 195, 1981, 1, 196, 4, 196, 1985, 8, 196, 11, 196, 12, 196, 1986, 1, 197, 1, 197, 1, 197, 4, 197, 1992, 8, 197, 11, 197, 12, 197, 1993, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2002, 8, 198, 10, 198, 12, 198, 2005, 9, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2015, 8, 199, 10, 199, 12, 199, 2018, 9, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 1, 223, 1, 223, 1, 224, 1, 224, 1, 225, 1, 225, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 246, 1, 246, 1, 247, 1, 247, 1, 248, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 2131, 8, 250, 1, 251, 1, 251, 1, 252, 1, 252, 1, 253, 1, 253, 1, 254, 1, 254, 1, 255, 1, 255, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 262, 5, 262, 2159, 8, 262, 10, 262, 12, 262, 2162, 9, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 2173, 8, 263, 10, 263, 12, 263, 2176, 9, 263, 1, 263, 3, 263, 2179, 8, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 1, 2160, 0, 265, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 0, 451, 0, 453, 0, 455, 0, 457, 0, 459, 0, 461, 201, 463, 202, 465, 203, 467, 204, 469, 205, 471, 206, 473, 207, 475, 208, 477, 209, 479, 210, 481, 211, 483, 212, 485, 213, 487, 214, 489, 215, 491, 216, 493, 217, 495, 218, 497, 219, 499, 220, 501, 221, 503, 222, 505, 223, 507, 224, 509, 225, 511, 226, 513, 227, 515, 228, 517, 229, 519, 230, 521, 231, 523, 232, 525, 233, 527, 234, 529, 235, 1, 0, 37, 2, 0, 92, 92, 96, 96, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 2, 0, 92, 92, 125, 125, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 65, 90, 97, 122, 1, 0, 48, 55, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 2, 0, 10, 10, 13, 13, 2, 1, 10, 10, 13, 13, 2, 0, 9, 13, 32, 32, 2216, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 1, 531, 1, 0, 0, 0, 3, 535, 1, 0, 0, 0, 5, 541, 1, 0, 0, 0, 7, 547, 1, 0, 0, 0, 9, 551, 1, 0, 0, 0, 11, 557, 1, 0, 0, 0, 13, 561, 1, 0, 0, 0, 15, 566, 1, 0, 0, 0, 17, 570, 1, 0, 0, 0, 19, 576, 1, 0, 0, 0, 21, 593, 1, 0, 0, 0, 23, 595, 1, 0, 0, 0, 25, 600, 1, 0, 0, 0, 27, 604, 1, 0, 0, 0, 29, 610, 1, 0, 0, 0, 31, 617, 1, 0, 0, 0, 33, 625, 1, 0, 0, 0, 35, 630, 1, 0, 0, 0, 37, 633, 1, 0, 0, 0, 39, 638, 1, 0, 0, 0, 41, 643, 1, 0, 0, 0, 43, 649, 1, 0, 0, 0, 45, 655, 1, 0, 0, 0, 47, 663, 1, 0, 0, 0, 49, 669, 1, 0, 0, 0, 51, 676, 1, 0, 0, 0, 53, 684, 1, 0, 0, 0, 55, 691, 1, 0, 0, 0, 57, 699, 1, 0, 0, 0, 59, 710, 1, 0, 0, 0, 61, 717, 1, 0, 0, 0, 63, 723, 1, 0, 0, 0, 65, 728, 1, 0, 0, 0, 67, 736, 1, 0, 0, 0, 69, 745, 1, 0, 0, 0, 71, 755, 1, 0, 0, 0, 73, 760, 1, 0, 0, 0, 75, 764, 1, 0, 0, 0, 77, 776, 1, 0, 0, 0, 79, 784, 1, 0, 0, 0, 81, 790, 1, 0, 0, 0, 83, 797, 1, 0, 0, 0, 85, 802, 1, 0, 0, 0, 87, 813, 1, 0, 0, 0, 89, 822, 1, 0, 0, 0, 91, 829, 1, 0, 0, 0, 93, 842, 1, 0, 0, 0, 95, 853, 1, 0, 0, 0, 97, 858, 1, 0, 0, 0, 99, 867, 1, 0, 0, 0, 101, 879, 1, 0, 0, 0, 103, 884, 1, 0, 0, 0, 105, 889, 1, 0, 0, 0, 107, 893, 1, 0, 0, 0, 109, 900, 1, 0, 0, 0, 111, 907, 1, 0, 0, 0, 113, 914, 1, 0, 0, 0, 115, 922, 1, 0, 0, 0, 117, 933, 1, 0, 0, 0, 119, 941, 1, 0, 0, 0, 121, 949, 1, 0, 0, 0, 123, 955, 1, 0, 0, 0, 125, 961, 1, 0, 0, 0, 127, 967, 1, 0, 0, 0, 129, 977, 1, 0, 0, 0, 131, 981, 1, 0, 0, 0, 133, 988, 1, 0, 0, 0, 135, 995, 1, 0, 0, 0, 137, 1000, 1, 0, 0, 0, 139, 1005, 1, 0, 0, 0, 141, 1014, 1, 0, 0, 0, 143, 1021, 1, 0, 0, 0, 145, 1033, 1, 0, 0, 0, 147, 1039, 1, 0, 0, 0, 149, 1046, 1, 0, 0, 0, 151, 1059, 1, 0, 0, 0, 153, 1064, 1, 0, 0, 0, 155, 1067, 1, 0, 0, 0, 157, 1070, 1, 0, 0, 0, 159, 1076, 1, 0, 0, 0, 161, 1079, 1, 0, 0, 0, 163, 1098, 1, 0, 0, 0, 165, 1100, 1, 0, 0, 0, 167, 1110, 1, 0, 0, 0, 169, 1116, 1, 0, 0, 0, 171, 1123, 1, 0, 0, 0, 173, 1132, 1, 0, 0, 0, 175, 1137, 1, 0, 0, 0, 177, 1140, 1, 0, 0, 0, 179, 1153, 1, 0, 0, 0, 181, 1158, 1, 0, 0, 0, 183, 1162, 1, 0, 0, 0, 185, 1167, 1, 0, 0, 0, 187, 1172, 1, 0, 0, 0, 189, 1179, 1, 0, 0, 0, 191, 1187, 1, 0, 0, 0, 193, 1192, 1, 0, 0, 0, 195, 1201, 1, 0, 0, 0, 197, 1206, 1, 0, 0, 0, 199, 1212, 1, 0, 0, 0, 201, 1217, 1, 0, 0, 0, 203, 1223, 1, 0, 0, 0, 205, 1228, 1, 0, 0, 0, 207, 1240, 1, 0, 0, 0, 209, 1253, 1, 0, 0, 0, 211, 1257, 1, 0, 0, 0, 213, 1264, 1, 0, 0, 0, 215, 1268, 1, 0, 0, 0, 217, 1275, 1, 0, 0, 0, 219, 1282, 1, 0, 0, 0, 221, 1288, 1, 0, 0, 0, 223, 1293, 1, 0, 0, 0, 225, 1302, 1, 0, 0, 0, 227, 1306, 1, 0, 0, 0, 229, 1309, 1, 0, 0, 0, 231, 1313, 1, 0, 0, 0, 233, 1318, 1, 0, 0, 0, 235, 1324, 1, 0, 0, 0, 237, 1331, 1, 0, 0, 0, 239, 1334, 1, 0, 0, 0, 241, 1343, 1, 0, 0, 0, 243, 1346, 1, 0, 0, 0, 245, 1352, 1, 0, 0, 0, 247, 1358, 1, 0, 0, 0, 249, 1366, 1, 0, 0, 0, 251, 1371, 1, 0, 0, 0, 253, 1381, 1, 0, 0, 0, 255, 1390, 1, 0, 0, 0, 257, 1400, 1, 0, 0, 0, 259, 1409, 1, 0, 0, 0, 261, 1417, 1, 0, 0, 0, 263, 1428, 1, 0, 0, 0, 265, 1436, 1, 0, 0, 0, 267, 1442, 1, 0, 0, 0, 269, 1449, 1, 0, 0, 0, 271, 1456, 1, 0, 0, 0, 273, 1463, 1, 0, 0, 0, 275, 1471, 1, 0, 0, 0, 277, 1479, 1, 0, 0, 0, 279, 1490, 1, 0, 0, 0, 281, 1496, 1, 0, 0, 0, 283, 1503, 1, 0, 0, 0, 285, 1507, 1, 0, 0, 0, 287, 1512, 1, 0, 0, 0, 289, 1519, 1, 0, 0, 0, 291, 1526, 1, 0, 0, 0, 293, 1533, 1, 0, 0, 0, 295, 1538, 1, 0, 0, 0, 297, 1544, 1, 0, 0, 0, 299, 1548, 1, 0, 0, 0, 301, 1557, 1, 0, 0, 0, 303, 1562, 1, 0, 0, 0, 305, 1569, 1, 0, 0, 0, 307, 1575, 1, 0, 0, 0, 309, 1580, 1, 0, 0, 0, 311, 1590, 1, 0, 0, 0, 313, 1595, 1, 0, 0, 0, 315, 1602, 1, 0, 0, 0, 317, 1609, 1, 0, 0, 0, 319, 1615, 1, 0, 0, 0, 321, 1622, 1, 0, 0, 0, 323, 1632, 1, 0, 0, 0, 325, 1637, 1, 0, 0, 0, 327, 1642, 1, 0, 0, 0, 329, 1647, 1, 0, 0, 0, 331, 1655, 1, 0, 0, 0, 333, 1665, 1, 0, 0, 0, 335, 1668, 1, 0, 0, 0, 337, 1672, 1, 0, 0, 0, 339, 1679, 1, 0, 0, 0, 341, 1688, 1, 0, 0, 0, 343, 1693, 1, 0, 0, 0, 345, 1702, 1, 0, 0, 0, 347, 1706, 1, 0, 0, 0, 349, 1711, 1, 0, 0, 0, 351, 1721, 1, 0, 0, 0, 353, 1727, 1, 0, 0, 0, 355, 1734, 1, 0, 0, 0, 357, 1738, 1, 0, 0, 0, 359, 1744, 1, 0, 0, 0, 361, 1749, 1, 0, 0, 0, 363, 1756, 1, 0, 0, 0, 365, 1761, 1, 0, 0, 0, 367, 1768, 1, 0, 0, 0, 369, 1774, 1, 0, 0, 0, 371, 1779, 1, 0, 0, 0, 373, 1784, 1, 0, 0, 0, 375, 1790, 1, 0, 0, 0, 377, 1797, 1, 0, 0, 0, 379, 1812, 1, 0, 0, 0, 381, 1814, 1, 0, 0, 0, 383, 1820, 1, 0, 0, 0, 385, 1855, 1, 0, 0, 0, 387, 1897, 1, 0, 0, 0, 389, 1975, 1, 0, 0, 0, 391, 1977, 1, 0, 0, 0, 393, 1984, 1, 0, 0, 0, 395, 1988, 1, 0, 0, 0, 397, 1995, 1, 0, 0, 0, 399, 2008, 1, 0, 0, 0, 401, 2021, 1, 0, 0, 0, 403, 2023, 1, 0, 0, 0, 405, 2025, 1, 0, 0, 0, 407, 2027, 1, 0, 0, 0, 409, 2029, 1, 0, 0, 0, 411, 2031, 1, 0, 0, 0, 413, 2033, 1, 0, 0, 0, 415, 2035, 1, 0, 0, 0, 417, 2037, 1, 0, 0, 0, 419, 2039, 1, 0, 0, 0, 421, 2041, 1, 0, 0, 0, 423, 2043, 1, 0, 0, 0, 425, 2045, 1, 0, 0, 0, 427, 2047, 1, 0, 0, 0, 429, 2049, 1, 0, 0, 0, 431, 2051, 1, 0, 0, 0, 433, 2053, 1, 0, 0, 0, 435, 2055, 1, 0, 0, 0, 437, 2057, 1, 0, 0, 0, 439, 2059, 1, 0, 0, 0, 441, 2061, 1, 0, 0, 0, 443, 2063, 1, 0, 0, 0, 445, 2065, 1, 0, 0, 0, 447, 2067, 1, 0, 0, 0, 449, 2069, 1, 0, 0, 0, 451, 2071, 1, 0, 0, 0, 453, 2073, 1, 0, 0, 0, 455, 2075, 1, 0, 0, 0, 457, 2077, 1, 0, 0, 0, 459, 2079, 1, 0, 0, 0, 461, 2081, 1, 0, 0, 0, 463, 2084, 1, 0, 0, 0, 465, 2086, 1, 0, 0, 0, 467, 2088, 1, 0, 0, 0, 469, 2090, 1, 0, 0, 0, 471, 2092, 1, 0, 0, 0, 473, 2094, 1, 0, 0, 0, 475, 2097, 1, 0, 0, 0, 477, 2099, 1, 0, 0, 0, 479, 2101, 1, 0, 0, 0, 481, 2103, 1, 0, 0, 0, 483, 2106, 1, 0, 0, 0, 485, 2108, 1, 0, 0, 0, 487, 2111, 1, 0, 0, 0, 489, 2113, 1, 0, 0, 0, 491, 2115, 1, 0, 0, 0, 493, 2117, 1, 0, 0, 0, 495, 2119, 1, 0, 0, 0, 497, 2121, 1, 0, 0, 0, 499, 2124, 1, 0, 0, 0, 501, 2130, 1, 0, 0, 0, 503, 2132, 1, 0, 0, 0, 505, 2134, 1, 0, 0, 0, 507, 2136, 1, 0, 0, 0, 509, 2138, 1, 0, 0, 0, 511, 2140, 1, 0, 0, 0, 513, 2142, 1, 0, 0, 0, 515, 2144, 1, 0, 0, 0, 517, 2146, 1, 0, 0, 0, 519, 2148, 1, 0, 0, 0, 521, 2150, 1, 0, 0, 0, 523, 2152, 1, 0, 0, 0, 525, 2154, 1, 0, 0, 0, 527, 2168, 1, 0, 0, 0, 529, 2182, 1, 0, 0, 0, 531, 532, 3, 401, 200, 0, 532, 533, 3, 407, 203, 0, 533, 534, 3, 407, 203, 0, 534, 2, 1, 0, 0, 0, 535, 536, 3, 401, 200, 0, 536, 537, 3, 411, 205, 0, 537, 538, 3, 439, 219, 0, 538, 539, 3, 409, 204, 0, 539, 540, 3, 435, 217, 0, 540, 4, 1, 0, 0, 0, 541, 542, 3, 401, 200, 0, 542, 543, 3, 423, 211, 0, 543, 544, 3, 417, 208, 0, 544, 545, 3, 401, 200, 0, 545, 546, 3, 437, 218, 0, 546, 6, 1, 0, 0, 0, 547, 548, 3, 401, 200, 0, 548, 549, 3, 423, 211, 0, 549, 550, 3, 423, 211, 0, 550, 8, 1, 0, 0, 0, 551, 552, 3, 401, 200, 0, 552, 553, 3, 423, 211, 0, 553, 554, 3, 439, 219, 0, 554, 555, 3, 409, 204, 0, 555, 556, 3, 435, 217, 0, 556, 10, 1, 0, 0, 0, 557, 558, 3, 401, 200, 0, 558, 559, 3, 427, 213, 0, 559, 560, 3, 407, 203, 0, 560, 12, 1, 0, 0, 0, 561, 562, 3, 401, 200, 0, 562, 563, 3, 427, 213, 0, 563, 564, 3, 439, 219, 0, 564, 565, 3, 417, 208, 0, 565, 14, 1, 0, 0, 0, 566, 567, 3, 401, 200, 0, 567, 568, 3, 427, 213, 0, 568, 569, 3, 449, 224, 0, 569, 16, 1, 0, 0, 0, 570, 571, 3, 401, 200, 0, 571, 572, 3, 435, 217, 0, 572, 573, 3, 435, 217, 0, 573, 574, 3, 401, 200, 0, 574, 575, 3, 449, 224, 0, 575, 18, 1, 0, 0, 0, 576, 577, 3, 401, 200, 0, 577, 578, 3, 437, 218, 0, 578, 20, 1, 0, 0, 0, 579, 580, 3, 401, 200, 0, 580, 581, 3, 437, 218, 0, 581, 582, 3, 405, 202, 0, 582, 594, 1, 0, 0, 0, 583, 584, 3, 401, 200, 0, 584, 585, 3, 437, 218, 0, 585, 586, 3, 405, 202, 0, 586, 587, 3, 409, 204, 0, 587, 588, 3, 427, 213, 0, 588, 589, 3, 407, 203, 0, 589, 590, 3, 417, 208, 0, 590, 591, 3, 427, 213, 0, 591, 592, 3, 413, 206, 0, 592, 594, 1, 0, 0, 0, 593, 579, 1, 0, 0, 0, 593, 583, 1, 0, 0, 0, 594, 22, 1, 0, 0, 0, 595, 596, 3, 401, 200, 0, 596, 597, 3, 437, 218, 0, 597, 598, 3, 429, 214, 0, 598, 599, 3, 411, 205, 0, 599, 24, 1, 0, 0, 0, 600, 601, 3, 401, 200, 0, 601, 602, 3, 437, 218, 0, 602, 603, 3, 439, 219, 0, 603, 26, 1, 0, 0, 0, 604, 605, 3, 401, 200, 0, 605, 606, 3, 437, 218, 0, 606, 607, 3, 449, 224, 0, 607, 608, 3, 427, 213, 0, 608, 609, 3, 405, 202, 0, 609, 28, 1, 0, 0, 0, 610, 611, 3, 401, 200, 0, 611, 612, 3, 439, 219, 0, 612, 613, 3, 439, 219, 0, 613, 614, 3, 401, 200, 0, 614, 615, 3, 405, 202, 0, 615, 616, 3, 415, 207, 0, 616, 30, 1, 0, 0, 0, 617, 618, 3, 403, 201, 0, 618, 619, 3, 409, 204, 0, 619, 620, 3, 439, 219, 0, 620, 621, 3, 445, 222, 0, 621, 622, 3, 409, 204, 0, 622, 623, 3, 409, 204, 0, 623, 624, 3, 427, 213, 0, 624, 32, 1, 0, 0, 0, 625, 626, 3, 403, 201, 0, 626, 627, 3, 429, 214, 0, 627, 628, 3, 439, 219, 0, 628, 629, 3, 415, 207, 0, 629, 34, 1, 0, 0, 0, 630, 631, 3, 403, 201, 0, 631, 632, 3, 449, 224, 0, 632, 36, 1, 0, 0, 0, 633, 634, 3, 405, 202, 0, 634, 635, 3, 401, 200, 0, 635, 636, 3, 437, 218, 0, 636, 637, 3, 409, 204, 0, 637, 38, 1, 0, 0, 0, 638, 639, 3, 405, 202, 0, 639, 640, 3, 401, 200, 0, 640, 641, 3, 437, 218, 0, 641, 642, 3, 439, 219, 0, 642, 40, 1, 0, 0, 0, 643, 644, 3, 405, 202, 0, 644, 645, 3, 415, 207, 0, 645, 646, 3, 409, 204, 0, 646, 647, 3, 405, 202, 0, 647, 648, 3, 421, 210, 0, 648, 42, 1, 0, 0, 0, 649, 650, 3, 405, 202, 0, 650, 651, 3, 423, 211, 0, 651, 652, 3, 409, 204, 0, 652, 653, 3, 401, 200, 0, 653, 654, 3, 435, 217, 0, 654, 44, 1, 0, 0, 0, 655, 656, 3, 405, 202, 0, 656, 657, 3, 423, 211, 0, 657, 658, 3, 441, 220, 0, 658, 659, 3, 437, 218, 0, 659, 660, 3, 439, 219, 0, 660, 661, 3, 409, 204, 0, 661, 662, 3, 435, 217, 0, 662, 46, 1, 0, 0, 0, 663, 664, 3, 405, 202, 0, 664, 665, 3, 429, 214, 0, 665, 666, 3, 407, 203, 0, 666, 667, 3, 409, 204, 0, 667, 668, 3, 405, 202, 0, 668, 48, 1, 0, 0, 0, 669, 670, 3, 405, 202, 0, 670, 671, 3, 429, 214, 0, 671, 672, 3, 415, 207, 0, 672, 673, 3, 429, 214, 0, 673, 674, 3, 435, 217, 0, 674, 675, 3, 439, 219, 0, 675, 50, 1, 0, 0, 0, 676, 677, 3, 405, 202, 0, 677, 678, 3, 429, 214, 0, 678, 679, 3, 423, 211, 0, 679, 680, 3, 423, 211, 0, 680, 681, 3, 401, 200, 0, 681, 682, 3, 439, 219, 0, 682, 683, 3, 409, 204, 0, 683, 52, 1, 0, 0, 0, 684, 685, 3, 405, 202, 0, 685, 686, 3, 429, 214, 0, 686, 687, 3, 423, 211, 0, 687, 688, 3, 441, 220, 0, 688, 689, 3, 425, 212, 0, 689, 690, 3, 427, 213, 0, 690, 54, 1, 0, 0, 0, 691, 692, 3, 405, 202, 0, 692, 693, 3, 429, 214, 0, 693, 694, 3, 425, 212, 0, 694, 695, 3, 425, 212, 0, 695, 696, 3, 409, 204, 0, 696, 697, 3, 427, 213, 0, 697, 698, 3, 439, 219, 0, 698, 56, 1, 0, 0, 0, 699, 700, 3, 405, 202, 0, 700, 701, 3, 429, 214, 0, 701, 702, 3, 427, 213, 0, 702, 703, 3, 437, 218, 0, 703, 704, 3, 439, 219, 0, 704, 705, 3, 435, 217, 0, 705, 706, 3, 401, 200, 0, 706, 707, 3, 417, 208, 0, 707, 708, 3, 427, 213, 0, 708, 709, 3, 439, 219, 0, 709, 58, 1, 0, 0, 0, 710, 711, 3, 405, 202, 0, 711, 712, 3, 435, 217, 0, 712, 713, 3, 409, 204, 0, 713, 714, 3, 401, 200, 0, 714, 715, 3, 439, 219, 0, 715, 716, 3, 409, 204, 0, 716, 60, 1, 0, 0, 0, 717, 718, 3, 405, 202, 0, 718, 719, 3, 435, 217, 0, 719, 720, 3, 429, 214, 0, 720, 721, 3, 437, 218, 0, 721, 722, 3, 437, 218, 0, 722, 62, 1, 0, 0, 0, 723, 724, 3, 405, 202, 0, 724, 725, 3, 441, 220, 0, 725, 726, 3, 403, 201, 0, 726, 727, 3, 409, 204, 0, 727, 64, 1, 0, 0, 0, 728, 729, 3, 405, 202, 0, 729, 730, 3, 441, 220, 0, 730, 731, 3, 435, 217, 0, 731, 732, 3, 435, 217, 0, 732, 733, 3, 409, 204, 0, 733, 734, 3, 427, 213, 0, 734, 735, 3, 439, 219, 0, 735, 66, 1, 0, 0, 0, 736, 737, 3, 407, 203, 0, 737, 738, 3, 401, 200, 0, 738, 739, 3, 439, 219, 0, 739, 740, 3, 401, 200, 0, 740, 741, 3, 403, 201, 0, 741, 742, 3, 401, 200, 0, 742, 743, 3, 437, 218, 0, 743, 744, 3, 409, 204, 0, 744, 68, 1, 0, 0, 0, 745, 746, 3, 407, 203, 0, 746, 747, 3, 401, 200, 0, 747, 748, 3, 439, 219, 0, 748, 749, 3, 401, 200, 0, 749, 750, 3, 403, 201, 0, 750, 751, 3, 401, 200, 0, 751, 752, 3, 437, 218, 0, 752, 753, 3, 409, 204, 0, 753, 754, 3, 437, 218, 0, 754, 70, 1, 0, 0, 0, 755, 756, 3, 407, 203, 0, 756, 757, 3, 401, 200, 0, 757, 758, 3, 439, 219, 0, 758, 759, 3, 409, 204, 0, 759, 72, 1, 0, 0, 0, 760, 761, 3, 407, 203, 0, 761, 762, 3, 401, 200, 0, 762, 763, 3, 449, 224, 0, 763, 74, 1, 0, 0, 0, 764, 765, 3, 407, 203, 0, 765, 766, 3, 409, 204, 0, 766, 767, 3, 407, 203, 0, 767, 768, 3, 441, 220, 0, 768, 769, 3, 431, 215, 0, 769, 770, 3, 423, 211, 0, 770, 771, 3, 417, 208, 0, 771, 772, 3, 405, 202, 0, 772, 773, 3, 401, 200, 0, 773, 774, 3, 439, 219, 0, 774, 775, 3, 409, 204, 0, 775, 76, 1, 0, 0, 0, 776, 777, 3, 407, 203, 0, 777, 778, 3, 409, 204, 0, 778, 779, 3, 411, 205, 0, 779, 780, 3, 401, 200, 0, 780, 781, 3, 441, 220, 0, 781, 782, 3, 423, 211, 0, 782, 783, 3, 439, 219, 0, 783, 78, 1, 0, 0, 0, 784, 785, 3, 407, 203, 0, 785, 786, 3, 409, 204, 0, 786, 787, 3, 423, 211, 0, 787, 788, 3, 401, 200, 0, 788, 789, 3, 449, 224, 0, 789, 80, 1, 0, 0, 0, 790, 791, 3, 407, 203, 0, 791, 792, 3, 409, 204, 0, 792, 793, 3, 423, 211, 0, 793, 794, 3, 409, 204, 0, 794, 795, 3, 439, 219, 0, 795, 796, 3, 409, 204, 0, 796, 82, 1, 0, 0, 0, 797, 798, 3, 407, 203, 0, 798, 799, 3, 409, 204, 0, 799, 800, 3, 437, 218, 0, 800, 801, 3, 405, 202, 0, 801, 84, 1, 0, 0, 0, 802, 803, 3, 407, 203, 0, 803, 804, 3, 409, 204, 0, 804, 805, 3, 437, 218, 0, 805, 806, 3, 405, 202, 0, 806, 807, 3, 409, 204, 0, 807, 808, 3, 427, 213, 0, 808, 809, 3, 407, 203, 0, 809, 810, 3, 417, 208, 0, 810, 811, 3, 427, 213, 0, 811, 812, 3, 413, 206, 0, 812, 86, 1, 0, 0, 0, 813, 814, 3, 407, 203, 0, 814, 815, 3, 409, 204, 0, 815, 816, 3, 437, 218, 0, 816, 817, 3, 405, 202, 0, 817, 818, 3, 435, 217, 0, 818, 819, 3, 417, 208, 0, 819, 820, 3, 403, 201, 0, 820, 821, 3, 409, 204, 0, 821, 88, 1, 0, 0, 0, 822, 823, 3, 407, 203, 0, 823, 824, 3, 409, 204, 0, 824, 825, 3, 439, 219, 0, 825, 826, 3, 401, 200, 0, 826, 827, 3, 405, 202, 0, 827, 828, 3, 415, 207, 0, 828, 90, 1, 0, 0, 0, 829, 830, 3, 407, 203, 0, 830, 831, 3, 417, 208, 0, 831, 832, 3, 405, 202, 0, 832, 833, 3, 439, 219, 0, 833, 834, 3, 417, 208, 0, 834, 835, 3, 429, 214, 0, 835, 836, 3, 427, 213, 0, 836, 837, 3, 401, 200, 0, 837, 838, 3, 435, 217, 0, 838, 839, 3, 417, 208, 0, 839, 840, 3, 409, 204, 0, 840, 841, 3, 437, 218, 0, 841, 92, 1, 0, 0, 0, 842, 843, 3, 407, 203, 0, 843, 844, 3, 417, 208, 0, 844, 845, 3, 405, 202, 0, 845, 846, 3, 439, 219, 0, 846, 847, 3, 417, 208, 0, 847, 848, 3, 429, 214, 0, 848, 849, 3, 427, 213, 0, 849, 850, 3, 401, 200, 0, 850, 851, 3, 435, 217, 0, 851, 852, 3, 449, 224, 0, 852, 94, 1, 0, 0, 0, 853, 854, 3, 407, 203, 0, 854, 855, 3, 417, 208, 0, 855, 856, 3, 437, 218, 0, 856, 857, 3, 421, 210, 0, 857, 96, 1, 0, 0, 0, 858, 859, 3, 407, 203, 0, 859, 860, 3, 417, 208, 0, 860, 861, 3, 437, 218, 0, 861, 862, 3, 439, 219, 0, 862, 863, 3, 417, 208, 0, 863, 864, 3, 427, 213, 0, 864, 865, 3, 405, 202, 0, 865, 866, 3, 439, 219, 0, 866, 98, 1, 0, 0, 0, 867, 868, 3, 407, 203, 0, 868, 869, 3, 417, 208, 0, 869, 870, 3, 437, 218, 0, 870, 871, 3, 439, 219, 0, 871, 872, 3, 435, 217, 0, 872, 873, 3, 417, 208, 0, 873, 874, 3, 403, 201, 0, 874, 875, 3, 441, 220, 0, 875, 876, 3, 439, 219, 0, 876, 877, 3, 409, 204, 0, 877, 878, 3, 407, 203, 0, 878, 100, 1, 0, 0, 0, 879, 880, 3, 407, 203, 0, 880, 881, 3, 435, 217, 0, 881, 882, 3, 429, 214, 0, 882, 883, 3, 431, 215, 0, 883, 102, 1, 0, 0, 0, 884, 885, 3, 409, 204, 0, 885, 886, 3, 423, 211, 0, 886, 887, 3, 437, 218, 0, 887, 888, 3, 409, 204, 0, 888, 104, 1, 0, 0, 0, 889, 890, 3, 409, 204, 0, 890, 891, 3, 427, 213, 0, 891, 892, 3, 407, 203, 0, 892, 106, 1, 0, 0, 0, 893, 894, 3, 409, 204, 0, 894, 895, 3, 427, 213, 0, 895, 896, 3, 413, 206, 0, 896, 897, 3, 417, 208, 0, 897, 898, 3, 427, 213, 0, 898, 899, 3, 409, 204, 0, 899, 108, 1, 0, 0, 0, 900, 901, 3, 409, 204, 0, 901, 902, 3, 443, 221, 0, 902, 903, 3, 409, 204, 0, 903, 904, 3, 427, 213, 0, 904, 905, 3, 439, 219, 0, 905, 906, 3, 437, 218, 0, 906, 110, 1, 0, 0, 0, 907, 908, 3, 409, 204, 0, 908, 909, 3, 447, 223, 0, 909, 910, 3, 417, 208, 0, 910, 911, 3, 437, 218, 0, 911, 912, 3, 439, 219, 0, 912, 913, 3, 437, 218, 0, 913, 112, 1, 0, 0, 0, 914, 915, 3, 409, 204, 0, 915, 916, 3, 447, 223, 0, 916, 917, 3, 431, 215, 0, 917, 918, 3, 423, 211, 0, 918, 919, 3, 401, 200, 0, 919, 920, 3, 417, 208, 0, 920, 921, 3, 427, 213, 0, 921, 114, 1, 0, 0, 0, 922, 923, 3, 409, 204, 0, 923, 924, 3, 447, 223, 0, 924, 925, 3, 431, 215, 0, 925, 926, 3, 435, 217, 0, 926, 927, 3, 409, 204, 0, 927, 928, 3, 437, 218, 0, 928, 929, 3, 437, 218, 0, 929, 930, 3, 417, 208, 0, 930, 931, 3, 429, 214, 0, 931, 932, 3, 427, 213, 0, 932, 116, 1, 0, 0, 0, 933, 934, 3, 409, 204, 0, 934, 935, 3, 447, 223, 0, 935, 936, 3, 439, 219, 0, 936, 937, 3, 435, 217, 0, 937, 938, 3, 401, 200, 0, 938, 939, 3, 405, 202, 0, 939, 940, 3, 439, 219, 0, 940, 118, 1, 0, 0, 0, 941, 942, 3, 411, 205, 0, 942, 943, 3, 409, 204, 0, 943, 944, 3, 439, 219, 0, 944, 945, 3, 405, 202, 0, 945, 946, 3, 415, 207, 0, 946, 947, 3, 409, 204, 0, 947, 948, 3, 437, 218, 0, 948, 120, 1, 0, 0, 0, 949, 950, 3, 411, 205, 0, 950, 951, 3, 417, 208, 0, 951, 952, 3, 427, 213, 0, 952, 953, 3, 401, 200, 0, 953, 954, 3, 423, 211, 0, 954, 122, 1, 0, 0, 0, 955, 956, 3, 411, 205, 0, 956, 957, 3, 417, 208, 0, 957, 958, 3, 435, 217, 0, 958, 959, 3, 437, 218, 0, 959, 960, 3, 439, 219, 0, 960, 124, 1, 0, 0, 0, 961, 962, 3, 411, 205, 0, 962, 963, 3, 423, 211, 0, 963, 964, 3, 441, 220, 0, 964, 965, 3, 437, 218, 0, 965, 966, 3, 415, 207, 0, 966, 126, 1, 0, 0, 0, 967, 968, 3, 411, 205, 0, 968, 969, 3, 429, 214, 0, 969, 970, 3, 423, 211, 0, 970, 971, 3, 423, 211, 0, 971, 972, 3, 429, 214, 0, 972, 973, 3, 445, 222, 0, 973, 974, 3, 417, 208, 0, 974, 975, 3, 427, 213, 0, 975, 976, 3, 413, 206, 0, 976, 128, 1, 0, 0, 0, 977, 978, 3, 411, 205, 0, 978, 979, 3, 429, 214, 0, 979, 980, 3, 435, 217, 0, 980, 130, 1, 0, 0, 0, 981, 982, 3, 411, 205, 0, 982, 983, 3, 429, 214, 0, 983, 984, 3, 435, 217, 0, 984, 985, 3, 425, 212, 0, 985, 986, 3, 401, 200, 0, 986, 987, 3, 439, 219, 0, 987, 132, 1, 0, 0, 0, 988, 989, 3, 411, 205, 0, 989, 990, 3, 435, 217, 0, 990, 991, 3, 409, 204, 0, 991, 992, 3, 409, 204, 0, 992, 993, 3, 451, 225, 0, 993, 994, 3, 409, 204, 0, 994, 134, 1, 0, 0, 0, 995, 996, 3, 411, 205, 0, 996, 997, 3, 435, 217, 0, 997, 998, 3, 429, 214, 0, 998, 999, 3, 425, 212, 0, 999, 136, 1, 0, 0, 0, 1000, 1001, 3, 411, 205, 0, 1001, 1002, 3, 441, 220, 0, 1002, 1003, 3, 423, 211, 0, 1003, 1004, 3, 423, 211, 0, 1004, 138, 1, 0, 0, 0, 1005, 1006, 3, 411, 205, 0, 1006, 1007, 3, 441, 220, 0, 1007, 1008, 3, 427, 213, 0, 1008, 1009, 3, 405, 202, 0, 1009, 1010, 3, 439, 219, 0, 1010, 1011, 3, 417, 208, 0, 1011, 1012, 3, 429, 214, 0, 1012, 1013, 3, 427, 213, 0, 1013, 140, 1, 0, 0, 0, 1014, 1015, 3, 413, 206, 0, 1015, 1016, 3, 423, 211, 0, 1016, 1017, 3, 429, 214, 0, 1017, 1018, 3, 403, 201, 0, 1018, 1019, 3, 401, 200, 0, 1019, 1020, 3, 423, 211, 0, 1020, 142, 1, 0, 0, 0, 1021, 1022, 3, 413, 206, 0, 1022, 1023, 3, 435, 217, 0, 1023, 1024, 3, 401, 200, 0, 1024, 1025, 3, 427, 213, 0, 1025, 1026, 3, 441, 220, 0, 1026, 1027, 3, 423, 211, 0, 1027, 1028, 3, 401, 200, 0, 1028, 1029, 3, 435, 217, 0, 1029, 1030, 3, 417, 208, 0, 1030, 1031, 3, 439, 219, 0, 1031, 1032, 3, 449, 224, 0, 1032, 144, 1, 0, 0, 0, 1033, 1034, 3, 413, 206, 0, 1034, 1035, 3, 435, 217, 0, 1035, 1036, 3, 429, 214, 0, 1036, 1037, 3, 441, 220, 0, 1037, 1038, 3, 431, 215, 0, 1038, 146, 1, 0, 0, 0, 1039, 1040, 3, 415, 207, 0, 1040, 1041, 3, 401, 200, 0, 1041, 1042, 3, 443, 221, 0, 1042, 1043, 3, 417, 208, 0, 1043, 1044, 3, 427, 213, 0, 1044, 1045, 3, 413, 206, 0, 1045, 148, 1, 0, 0, 0, 1046, 1047, 3, 415, 207, 0, 1047, 1048, 3, 417, 208, 0, 1048, 1049, 3, 409, 204, 0, 1049, 1050, 3, 435, 217, 0, 1050, 1051, 3, 401, 200, 0, 1051, 1052, 3, 435, 217, 0, 1052, 1053, 3, 405, 202, 0, 1053, 1054, 3, 415, 207, 0, 1054, 1055, 3, 417, 208, 0, 1055, 1056, 3, 405, 202, 0, 1056, 1057, 3, 401, 200, 0, 1057, 1058, 3, 423, 211, 0, 1058, 150, 1, 0, 0, 0, 1059, 1060, 3, 415, 207, 0, 1060, 1061, 3, 429, 214, 0, 1061, 1062, 3, 441, 220, 0, 1062, 1063, 3, 435, 217, 0, 1063, 152, 1, 0, 0, 0, 1064, 1065, 3, 417, 208, 0, 1065, 1066, 3, 407, 203, 0, 1066, 154, 1, 0, 0, 0, 1067, 1068, 3, 417, 208, 0, 1068, 1069, 3, 411, 205, 0, 1069, 156, 1, 0, 0, 0, 1070, 1071, 3, 417, 208, 0, 1071, 1072, 3, 423, 211, 0, 1072, 1073, 3, 417, 208, 0, 1073, 1074, 3, 421, 210, 0, 1074, 1075, 3, 409, 204, 0, 1075, 158, 1, 0, 0, 0, 1076, 1077, 3, 417, 208, 0, 1077, 1078, 3, 427, 213, 0, 1078, 160, 1, 0, 0, 0, 1079, 1080, 3, 417, 208, 0, 1080, 1081, 3, 427, 213, 0, 1081, 1082, 3, 407, 203, 0, 1082, 1083, 3, 409, 204, 0, 1083, 1084, 3, 447, 223, 0, 1084, 162, 1, 0, 0, 0, 1085, 1086, 3, 417, 208, 0, 1086, 1087, 3, 427, 213, 0, 1087, 1088, 3, 411, 205, 0, 1088, 1099, 1, 0, 0, 0, 1089, 1090, 3, 417, 208, 0, 1090, 1091, 3, 427, 213, 0, 1091, 1092, 3, 411, 205, 0, 1092, 1093, 3, 417, 208, 0, 1093, 1094, 3, 427, 213, 0, 1094, 1095, 3, 417, 208, 0, 1095, 1096, 3, 439, 219, 0, 1096, 1097, 3, 449, 224, 0, 1097, 1099, 1, 0, 0, 0, 1098, 1085, 1, 0, 0, 0, 1098, 1089, 1, 0, 0, 0, 1099, 164, 1, 0, 0, 0, 1100, 1101, 3, 417, 208, 0, 1101, 1102, 3, 427, 213, 0, 1102, 1103, 3, 419, 209, 0, 1103, 1104, 3, 409, 204, 0, 1104, 1105, 3, 405, 202, 0, 1105, 1106, 3, 439, 219, 0, 1106, 1107, 3, 417, 208, 0, 1107, 1108, 3, 443, 221, 0, 1108, 1109, 3, 409, 204, 0, 1109, 166, 1, 0, 0, 0, 1110, 1111, 3, 417, 208, 0, 1111, 1112, 3, 427, 213, 0, 1112, 1113, 3, 427, 213, 0, 1113, 1114, 3, 409, 204, 0, 1114, 1115, 3, 435, 217, 0, 1115, 168, 1, 0, 0, 0, 1116, 1117, 3, 417, 208, 0, 1117, 1118, 3, 427, 213, 0, 1118, 1119, 3, 437, 218, 0, 1119, 1120, 3, 409, 204, 0, 1120, 1121, 3, 435, 217, 0, 1121, 1122, 3, 439, 219, 0, 1122, 170, 1, 0, 0, 0, 1123, 1124, 3, 417, 208, 0, 1124, 1125, 3, 427, 213, 0, 1125, 1126, 3, 439, 219, 0, 1126, 1127, 3, 409, 204, 0, 1127, 1128, 3, 435, 217, 0, 1128, 1129, 3, 443, 221, 0, 1129, 1130, 3, 401, 200, 0, 1130, 1131, 3, 423, 211, 0, 1131, 172, 1, 0, 0, 0, 1132, 1133, 3, 417, 208, 0, 1133, 1134, 3, 427, 213, 0, 1134, 1135, 3, 439, 219, 0, 1135, 1136, 3, 429, 214, 0, 1136, 174, 1, 0, 0, 0, 1137, 1138, 3, 417, 208, 0, 1138, 1139, 3, 437, 218, 0, 1139, 176, 1, 0, 0, 0, 1140, 1141, 3, 417, 208, 0, 1141, 1142, 3, 437, 218, 0, 1142, 1143, 3, 523, 261, 0, 1143, 1144, 3, 429, 214, 0, 1144, 1145, 3, 403, 201, 0, 1145, 1146, 3, 419, 209, 0, 1146, 1147, 3, 409, 204, 0, 1147, 1148, 3, 405, 202, 0, 1148, 1149, 3, 439, 219, 0, 1149, 1150, 3, 523, 261, 0, 1150, 1151, 3, 417, 208, 0, 1151, 1152, 3, 407, 203, 0, 1152, 178, 1, 0, 0, 0, 1153, 1154, 3, 419, 209, 0, 1154, 1155, 3, 429, 214, 0, 1155, 1156, 3, 417, 208, 0, 1156, 1157, 3, 427, 213, 0, 1157, 180, 1, 0, 0, 0, 1158, 1159, 3, 421, 210, 0, 1159, 1160, 3, 409, 204, 0, 1160, 1161, 3, 449, 224, 0, 1161, 182, 1, 0, 0, 0, 1162, 1163, 3, 421, 210, 0, 1163, 1164, 3, 417, 208, 0, 1164, 1165, 3, 423, 211, 0, 1165, 1166, 3, 423, 211, 0, 1166, 184, 1, 0, 0, 0, 1167, 1168, 3, 423, 211, 0, 1168, 1169, 3, 401, 200, 0, 1169, 1170, 3, 437, 218, 0, 1170, 1171, 3, 439, 219, 0, 1171, 186, 1, 0, 0, 0, 1172, 1173, 3, 423, 211, 0, 1173, 1174, 3, 401, 200, 0, 1174, 1175, 3, 449, 224, 0, 1175, 1176, 3, 429, 214, 0, 1176, 1177, 3, 441, 220, 0, 1177, 1178, 3, 439, 219, 0, 1178, 188, 1, 0, 0, 0, 1179, 1180, 3, 423, 211, 0, 1180, 1181, 3, 409, 204, 0, 1181, 1182, 3, 401, 200, 0, 1182, 1183, 3, 407, 203, 0, 1183, 1184, 3, 417, 208, 0, 1184, 1185, 3, 427, 213, 0, 1185, 1186, 3, 413, 206, 0, 1186, 190, 1, 0, 0, 0, 1187, 1188, 3, 423, 211, 0, 1188, 1189, 3, 409, 204, 0, 1189, 1190, 3, 411, 205, 0, 1190, 1191, 3, 439, 219, 0, 1191, 192, 1, 0, 0, 0, 1192, 1193, 3, 423, 211, 0, 1193, 1194, 3, 417, 208, 0, 1194, 1195, 3, 411, 205, 0, 1195, 1196, 3, 409, 204, 0, 1196, 1197, 3, 439, 219, 0, 1197, 1198, 3, 417, 208, 0, 1198, 1199, 3, 425, 212, 0, 1199, 1200, 3, 409, 204, 0, 1200, 194, 1, 0, 0, 0, 1201, 1202, 3, 423, 211, 0, 1202, 1203, 3, 417, 208, 0, 1203, 1204, 3, 421, 210, 0, 1204, 1205, 3, 409, 204, 0, 1205, 196, 1, 0, 0, 0, 1206, 1207, 3, 423, 211, 0, 1207, 1208, 3, 417, 208, 0, 1208, 1209, 3, 425, 212, 0, 1209, 1210, 3, 417, 208, 0, 1210, 1211, 3, 439, 219, 0, 1211, 198, 1, 0, 0, 0, 1212, 1213, 3, 423, 211, 0, 1213, 1214, 3, 417, 208, 0, 1214, 1215, 3, 443, 221, 0, 1215, 1216, 3, 409, 204, 0, 1216, 200, 1, 0, 0, 0, 1217, 1218, 3, 423, 211, 0, 1218, 1219, 3, 429, 214, 0, 1219, 1220, 3, 405, 202, 0, 1220, 1221, 3, 401, 200, 0, 1221, 1222, 3, 423, 211, 0, 1222, 202, 1, 0, 0, 0, 1223, 1224, 3, 423, 211, 0, 1224, 1225, 3, 429, 214, 0, 1225, 1226, 3, 413, 206, 0, 1226, 1227, 3, 437, 218, 0, 1227, 204, 1, 0, 0, 0, 1228, 1229, 3, 425, 212, 0, 1229, 1230, 3, 401, 200, 0, 1230, 1231, 3, 439, 219, 0, 1231, 1232, 3, 409, 204, 0, 1232, 1233, 3, 435, 217, 0, 1233, 1234, 3, 417, 208, 0, 1234, 1235, 3, 401, 200, 0, 1235, 1236, 3, 423, 211, 0, 1236, 1237, 3, 417, 208, 0, 1237, 1238, 3, 451, 225, 0, 1238, 1239, 3, 409, 204, 0, 1239, 206, 1, 0, 0, 0, 1240, 1241, 3, 425, 212, 0, 1241, 1242, 3, 401, 200, 0, 1242, 1243, 3, 439, 219, 0, 1243, 1244, 3, 409, 204, 0, 1244, 1245, 3, 435, 217, 0, 1245, 1246, 3, 417, 208, 0, 1246, 1247, 3, 401, 200, 0, 1247, 1248, 3, 423, 211, 0, 1248, 1249, 3, 417, 208, 0, 1249, 1250, 3, 451, 225, 0, 1250, 1251, 3, 409, 204, 0, 1251, 1252, 3, 407, 203, 0, 1252, 208, 1, 0, 0, 0, 1253, 1254, 3, 425, 212, 0, 1254, 1255, 3, 401, 200, 0, 1255, 1256, 3, 447, 223, 0, 1256, 210, 1, 0, 0, 0, 1257, 1258, 3, 425, 212, 0, 1258, 1259, 3, 409, 204, 0, 1259, 1260, 3, 435, 217, 0, 1260, 1261, 3, 413, 206, 0, 1261, 1262, 3, 409, 204, 0, 1262, 1263, 3, 437, 218, 0, 1263, 212, 1, 0, 0, 0, 1264, 1265, 3, 425, 212, 0, 1265, 1266, 3, 417, 208, 0, 1266, 1267, 3, 427, 213, 0, 1267, 214, 1, 0, 0, 0, 1268, 1269, 3, 425, 212, 0, 1269, 1270, 3, 417, 208, 0, 1270, 1271, 3, 427, 213, 0, 1271, 1272, 3, 441, 220, 0, 1272, 1273, 3, 439, 219, 0, 1273, 1274, 3, 409, 204, 0, 1274, 216, 1, 0, 0, 0, 1275, 1276, 3, 425, 212, 0, 1276, 1277, 3, 429, 214, 0, 1277, 1278, 3, 407, 203, 0, 1278, 1279, 3, 417, 208, 0, 1279, 1280, 3, 411, 205, 0, 1280, 1281, 3, 449, 224, 0, 1281, 218, 1, 0, 0, 0, 1282, 1283, 3, 425, 212, 0, 1283, 1284, 3, 429, 214, 0, 1284, 1285, 3, 427, 213, 0, 1285, 1286, 3, 439, 219, 0, 1286, 1287, 3, 415, 207, 0, 1287, 220, 1, 0, 0, 0, 1288, 1289, 3, 425, 212, 0, 1289, 1290, 3, 429, 214, 0, 1290, 1291, 3, 443, 221, 0, 1291, 1292, 3, 409, 204, 0, 1292, 222, 1, 0, 0, 0, 1293, 1294, 3, 425, 212, 0, 1294, 1295, 3, 441, 220, 0, 1295, 1296, 3, 439, 219, 0, 1296, 1297, 3, 401, 200, 0, 1297, 1298, 3, 439, 219, 0, 1298, 1299, 3, 417, 208, 0, 1299, 1300, 3, 429, 214, 0, 1300, 1301, 3, 427, 213, 0, 1301, 224, 1, 0, 0, 0, 1302, 1303, 3, 427, 213, 0, 1303, 1304, 3, 401, 200, 0, 1304, 1305, 3, 427, 213, 0, 1305, 226, 1, 0, 0, 0, 1306, 1307, 3, 427, 213, 0, 1307, 1308, 3, 429, 214, 0, 1308, 228, 1, 0, 0, 0, 1309, 1310, 3, 427, 213, 0, 1310, 1311, 3, 429, 214, 0, 1311, 1312, 3, 439, 219, 0, 1312, 230, 1, 0, 0, 0, 1313, 1314, 3, 427, 213, 0, 1314, 1315, 3, 441, 220, 0, 1315, 1316, 3, 423, 211, 0, 1316, 1317, 3, 423, 211, 0, 1317, 232, 1, 0, 0, 0, 1318, 1319, 3, 427, 213, 0, 1319, 1320, 3, 441, 220, 0, 1320, 1321, 3, 423, 211, 0, 1321, 1322, 3, 423, 211, 0, 1322, 1323, 3, 437, 218, 0, 1323, 234, 1, 0, 0, 0, 1324, 1325, 3, 429, 214, 0, 1325, 1326, 3, 411, 205, 0, 1326, 1327, 3, 411, 205, 0, 1327, 1328, 3, 437, 218, 0, 1328, 1329, 3, 409, 204, 0, 1329, 1330, 3, 439, 219, 0, 1330, 236, 1, 0, 0, 0, 1331, 1332, 3, 429, 214, 0, 1332, 1333, 3, 427, 213, 0, 1333, 238, 1, 0, 0, 0, 1334, 1335, 3, 429, 214, 0, 1335, 1336, 3, 431, 215, 0, 1336, 1337, 3, 439, 219, 0, 1337, 1338, 3, 417, 208, 0, 1338, 1339, 3, 425, 212, 0, 1339, 1340, 3, 417, 208, 0, 1340, 1341, 3, 451, 225, 0, 1341, 1342, 3, 409, 204, 0, 1342, 240, 1, 0, 0, 0, 1343, 1344, 3, 429, 214, 0, 1344, 1345, 3, 435, 217, 0, 1345, 242, 1, 0, 0, 0, 1346, 1347, 3, 429, 214, 0, 1347, 1348, 3, 435, 217, 0, 1348, 1349, 3, 407, 203, 0, 1349, 1350, 3, 409, 204, 0, 1350, 1351, 3, 435, 217, 0, 1351, 244, 1, 0, 0, 0, 1352, 1353, 3, 429, 214, 0, 1353, 1354, 3, 441, 220, 0, 1354, 1355, 3, 439, 219, 0, 1355, 1356, 3, 409, 204, 0, 1356, 1357, 3, 435, 217, 0, 1357, 246, 1, 0, 0, 0, 1358, 1359, 3, 429, 214, 0, 1359, 1360, 3, 441, 220, 0, 1360, 1361, 3, 439, 219, 0, 1361, 1362, 3, 411, 205, 0, 1362, 1363, 3, 417, 208, 0, 1363, 1364, 3, 423, 211, 0, 1364, 1365, 3, 409, 204, 0, 1365, 248, 1, 0, 0, 0, 1366, 1367, 3, 429, 214, 0, 1367, 1368, 3, 443, 221, 0, 1368, 1369, 3, 409, 204, 0, 1369, 1370, 3, 435, 217, 0, 1370, 250, 1, 0, 0, 0, 1371, 1372, 3, 431, 215, 0, 1372, 1373, 3, 401, 200, 0, 1373, 1374, 3, 435, 217, 0, 1374, 1375, 3, 439, 219, 0, 1375, 1376, 3, 417, 208, 0, 1376, 1377, 3, 439, 219, 0, 1377, 1378, 3, 417, 208, 0, 1378, 1379, 3, 429, 214, 0, 1379, 1380, 3, 427, 213, 0, 1380, 252, 1, 0, 0, 0, 1381, 1382, 3, 431, 215, 0, 1382, 1383, 3, 429, 214, 0, 1383, 1384, 3, 431, 215, 0, 1384, 1385, 3, 441, 220, 0, 1385, 1386, 3, 423, 211, 0, 1386, 1387, 3, 401, 200, 0, 1387, 1388, 3, 439, 219, 0, 1388, 1389, 3, 409, 204, 0, 1389, 254, 1, 0, 0, 0, 1390, 1391, 3, 431, 215, 0, 1391, 1392, 3, 435, 217, 0, 1392, 1393, 3, 409, 204, 0, 1393, 1394, 3, 405, 202, 0, 1394, 1395, 3, 409, 204, 0, 1395, 1396, 3, 407, 203, 0, 1396, 1397, 3, 417, 208, 0, 1397, 1398, 3, 427, 213, 0, 1398, 1399, 3, 413, 206, 0, 1399, 256, 1, 0, 0, 0, 1400, 1401, 3, 431, 215, 0, 1401, 1402, 3, 435, 217, 0, 1402, 1403, 3, 409, 204, 0, 1403, 1404, 3, 445, 222, 0, 1404, 1405, 3, 415, 207, 0, 1405, 1406, 3, 409, 204, 0, 1406, 1407, 3, 435, 217, 0, 1407, 1408, 3, 409, 204, 0, 1408, 258, 1, 0, 0, 0, 1409, 1410, 3, 431, 215, 0, 1410, 1411, 3, 435, 217, 0, 1411, 1412, 3, 417, 208, 0, 1412, 1413, 3, 425, 212, 0, 1413, 1414, 3, 401, 200, 0, 1414, 1415, 3, 435, 217, 0, 1415, 1416, 3, 449, 224, 0, 1416, 260, 1, 0, 0, 0, 1417, 1418, 3, 431, 215, 0, 1418, 1419, 3, 435, 217, 0, 1419, 1420, 3, 429, 214, 0, 1420, 1421, 3, 419, 209, 0, 1421, 1422, 3, 409, 204, 0, 1422, 1423, 3, 405, 202, 0, 1423, 1424, 3, 439, 219, 0, 1424, 1425, 3, 417, 208, 0, 1425, 1426, 3, 429, 214, 0, 1426, 1427, 3, 427, 213, 0, 1427, 262, 1, 0, 0, 0, 1428, 1429, 3, 433, 216, 0, 1429, 1430, 3, 441, 220, 0, 1430, 1431, 3, 401, 200, 0, 1431, 1432, 3, 435, 217, 0, 1432, 1433, 3, 439, 219, 0, 1433, 1434, 3, 409, 204, 0, 1434, 1435, 3, 435, 217, 0, 1435, 264, 1, 0, 0, 0, 1436, 1437, 3, 435, 217, 0, 1437, 1438, 3, 401, 200, 0, 1438, 1439, 3, 427, 213, 0, 1439, 1440, 3, 413, 206, 0, 1440, 1441, 3, 409, 204, 0, 1441, 266, 1, 0, 0, 0, 1442, 1443, 3, 435, 217, 0, 1443, 1444, 3, 409, 204, 0, 1444, 1445, 3, 423, 211, 0, 1445, 1446, 3, 429, 214, 0, 1446, 1447, 3, 401, 200, 0, 1447, 1448, 3, 407, 203, 0, 1448, 268, 1, 0, 0, 0, 1449, 1450, 3, 435, 217, 0, 1450, 1451, 3, 409, 204, 0, 1451, 1452, 3, 425, 212, 0, 1452, 1453, 3, 429, 214, 0, 1453, 1454, 3, 443, 221, 0, 1454, 1455, 3, 409, 204, 0, 1455, 270, 1, 0, 0, 0, 1456, 1457, 3, 435, 217, 0, 1457, 1458, 3, 409, 204, 0, 1458, 1459, 3, 427, 213, 0, 1459, 1460, 3, 401, 200, 0, 1460, 1461, 3, 425, 212, 0, 1461, 1462, 3, 409, 204, 0, 1462, 272, 1, 0, 0, 0, 1463, 1464, 3, 435, 217, 0, 1464, 1465, 3, 409, 204, 0, 1465, 1466, 3, 431, 215, 0, 1466, 1467, 3, 423, 211, 0, 1467, 1468, 3, 401, 200, 0, 1468, 1469, 3, 405, 202, 0, 1469, 1470, 3, 409, 204, 0, 1470, 274, 1, 0, 0, 0, 1471, 1472, 3, 435, 217, 0, 1472, 1473, 3, 409, 204, 0, 1473, 1474, 3, 431, 215, 0, 1474, 1475, 3, 423, 211, 0, 1475, 1476, 3, 417, 208, 0, 1476, 1477, 3, 405, 202, 0, 1477, 1478, 3, 401, 200, 0, 1478, 276, 1, 0, 0, 0, 1479, 1480, 3, 435, 217, 0, 1480, 1481, 3, 409, 204, 0, 1481, 1482, 3, 431, 215, 0, 1482, 1483, 3, 423, 211, 0, 1483, 1484, 3, 417, 208, 0, 1484, 1485, 3, 405, 202, 0, 1485, 1486, 3, 401, 200, 0, 1486, 1487, 3, 439, 219, 0, 1487, 1488, 3, 409, 204, 0, 1488, 1489, 3, 407, 203, 0, 1489, 278, 1, 0, 0, 0, 1490, 1491, 3, 435, 217, 0, 1491, 1492, 3, 417, 208, 0, 1492, 1493, 3, 413, 206, 0, 1493, 1494, 3, 415, 207, 0, 1494, 1495, 3, 439, 219, 0, 1495, 280, 1, 0, 0, 0, 1496, 1497, 3, 435, 217, 0, 1497, 1498, 3, 429, 214, 0, 1498, 1499, 3, 423, 211, 0, 1499, 1500, 3, 423, 211, 0, 1500, 1501, 3, 441, 220, 0, 1501, 1502, 3, 431, 215, 0, 1502, 282, 1, 0, 0, 0, 1503, 1504, 3, 435, 217, 0, 1504, 1505, 3, 429, 214, 0, 1505, 1506, 3, 445, 222, 0, 1506, 284, 1, 0, 0, 0, 1507, 1508, 3, 435, 217, 0, 1508, 1509, 3, 429, 214, 0, 1509, 1510, 3, 445, 222, 0, 1510, 1511, 3, 437, 218, 0, 1511, 286, 1, 0, 0, 0, 1512, 1513, 3, 437, 218, 0, 1513, 1514, 3, 401, 200, 0, 1514, 1515, 3, 425, 212, 0, 1515, 1516, 3, 431, 215, 0, 1516, 1517, 3, 423, 211, 0, 1517, 1518, 3, 409, 204, 0, 1518, 288, 1, 0, 0, 0, 1519, 1520, 3, 437, 218, 0, 1520, 1521, 3, 409, 204, 0, 1521, 1522, 3, 405, 202, 0, 1522, 1523, 3, 429, 214, 0, 1523, 1524, 3, 427, 213, 0, 1524, 1525, 3, 407, 203, 0, 1525, 290, 1, 0, 0, 0, 1526, 1527, 3, 437, 218, 0, 1527, 1528, 3, 409, 204, 0, 1528, 1529, 3, 423, 211, 0, 1529, 1530, 3, 409, 204, 0, 1530, 1531, 3, 405, 202, 0, 1531, 1532, 3, 439, 219, 0, 1532, 292, 1, 0, 0, 0, 1533, 1534, 3, 437, 218, 0, 1534, 1535, 3, 409, 204, 0, 1535, 1536, 3, 425, 212, 0, 1536, 1537, 3, 417, 208, 0, 1537, 294, 1, 0, 0, 0, 1538, 1539, 3, 437, 218, 0, 1539, 1540, 3, 409, 204, 0, 1540, 1541, 3, 427, 213, 0, 1541, 1542, 3, 407, 203, 0, 1542, 1543, 3, 437, 218, 0, 1543, 296, 1, 0, 0, 0, 1544, 1545, 3, 437, 218, 0, 1545, 1546, 3, 409, 204, 0, 1546, 1547, 3, 439, 219, 0, 1547, 298, 1, 0, 0, 0, 1548, 1549, 3, 437, 218, 0, 1549, 1550, 3, 409, 204, 0, 1550, 1551, 3, 439, 219, 0, 1551, 1552, 3, 439, 219, 0, 1552, 1553, 3, 417, 208, 0, 1553, 1554, 3, 427, 213, 0, 1554, 1555, 3, 413, 206, 0, 1555, 1556, 3, 437, 218, 0, 1556, 300, 1, 0, 0, 0, 1557, 1558, 3, 437, 218, 0, 1558, 1559, 3, 415, 207, 0, 1559, 1560, 3, 429, 214, 0, 1560, 1561, 3, 445, 222, 0, 1561, 302, 1, 0, 0, 0, 1562, 1563, 3, 437, 218, 0, 1563, 1564, 3, 429, 214, 0, 1564, 1565, 3, 441, 220, 0, 1565, 1566, 3, 435, 217, 0, 1566, 1567, 3, 405, 202, 0, 1567, 1568, 3, 409, 204, 0, 1568, 304, 1, 0, 0, 0, 1569, 1570, 3, 437, 218, 0, 1570, 1571, 3, 439, 219, 0, 1571, 1572, 3, 401, 200, 0, 1572, 1573, 3, 435, 217, 0, 1573, 1574, 3, 439, 219, 0, 1574, 306, 1, 0, 0, 0, 1575, 1576, 3, 437, 218, 0, 1576, 1577, 3, 439, 219, 0, 1577, 1578, 3, 429, 214, 0, 1578, 1579, 3, 431, 215, 0, 1579, 308, 1, 0, 0, 0, 1580, 1581, 3, 437, 218, 0, 1581, 1582, 3, 441, 220, 0, 1582, 1583, 3, 403, 201, 0, 1583, 1584, 3, 437, 218, 0, 1584, 1585, 3, 439, 219, 0, 1585, 1586, 3, 435, 217, 0, 1586, 1587, 3, 417, 208, 0, 1587, 1588, 3, 427, 213, 0, 1588, 1589, 3, 413, 206, 0, 1589, 310, 1, 0, 0, 0, 1590, 1591, 3, 437, 218, 0, 1591, 1592, 3, 449, 224, 0, 1592, 1593, 3, 427, 213, 0, 1593, 1594, 3, 405, 202, 0, 1594, 312, 1, 0, 0, 0, 1595, 1596, 3, 437, 218, 0, 1596, 1597, 3, 449, 224, 0, 1597, 1598, 3, 427, 213, 0, 1598, 1599, 3, 439, 219, 0, 1599, 1600, 3, 401, 200, 0, 1600, 1601, 3, 447, 223, 0, 1601, 314, 1, 0, 0, 0, 1602, 1603, 3, 437, 218, 0, 1603, 1604, 3, 449, 224, 0, 1604, 1605, 3, 437, 218, 0, 1605, 1606, 3, 439, 219, 0, 1606, 1607, 3, 409, 204, 0, 1607, 1608, 3, 425, 212, 0, 1608, 316, 1, 0, 0, 0, 1609, 1610, 3, 439, 219, 0, 1610, 1611, 3, 401, 200, 0, 1611, 1612, 3, 403, 201, 0, 1612, 1613, 3, 423, 211, 0, 1613, 1614, 3, 409, 204, 0, 1614, 318, 1, 0, 0, 0, 1615, 1616, 3, 439, 219, 0, 1616, 1617, 3, 401, 200, 0, 1617, 1618, 3, 403, 201, 0, 1618, 1619, 3, 423, 211, 0, 1619, 1620, 3, 409, 204, 0, 1620, 1621, 3, 437, 218, 0, 1621, 320, 1, 0, 0, 0, 1622, 1623, 3, 439, 219, 0, 1623, 1624, 3, 409, 204, 0, 1624, 1625, 3, 425, 212, 0, 1625, 1626, 3, 431, 215, 0, 1626, 1627, 3, 429, 214, 0, 1627, 1628, 3, 435, 217, 0, 1628, 1629, 3, 401, 200, 0, 1629, 1630, 3, 435, 217, 0, 1630, 1631, 3, 449, 224, 0, 1631, 322, 1, 0, 0, 0, 1632, 1633, 3, 439, 219, 0, 1633, 1634, 3, 409, 204, 0, 1634, 1635, 3, 437, 218, 0, 1635, 1636, 3, 439, 219, 0, 1636, 324, 1, 0, 0, 0, 1637, 1638, 3, 439, 219, 0, 1638, 1639, 3, 415, 207, 0, 1639, 1640, 3, 409, 204, 0, 1640, 1641, 3, 427, 213, 0, 1641, 326, 1, 0, 0, 0, 1642, 1643, 3, 439, 219, 0, 1643, 1644, 3, 417, 208, 0, 1644, 1645, 3, 409, 204, 0, 1645, 1646, 3, 437, 218, 0, 1646, 328, 1, 0, 0, 0, 1647, 1648, 3, 439, 219, 0, 1648, 1649, 3, 417, 208, 0, 1649, 1650, 3, 425, 212, 0, 1650, 1651, 3, 409, 204, 0, 1651, 1652, 3, 429, 214, 0, 1652, 1653, 3, 441, 220, 0, 1653, 1654, 3, 439, 219, 0, 1654, 330, 1, 0, 0, 0, 1655, 1656, 3, 439, 219, 0, 1656, 1657, 3, 417, 208, 0, 1657, 1658, 3, 425, 212, 0, 1658, 1659, 3, 409, 204, 0, 1659, 1660, 3, 437, 218, 0, 1660, 1661, 3, 439, 219, 0, 1661, 1662, 3, 401, 200, 0, 1662, 1663, 3, 425, 212, 0, 1663, 1664, 3, 431, 215, 0, 1664, 332, 1, 0, 0, 0, 1665, 1666, 3, 439, 219, 0, 1666, 1667, 3, 429, 214, 0, 1667, 334, 1, 0, 0, 0, 1668, 1669, 3, 439, 219, 0, 1669, 1670, 3, 429, 214, 0, 1670, 1671, 3, 431, 215, 0, 1671, 336, 1, 0, 0, 0, 1672, 1673, 3, 439, 219, 0, 1673, 1674, 3, 429, 214, 0, 1674, 1675, 3, 439, 219, 0, 1675, 1676, 3, 401, 200, 0, 1676, 1677, 3, 423, 211, 0, 1677, 1678, 3, 437, 218, 0, 1678, 338, 1, 0, 0, 0, 1679, 1680, 3, 439, 219, 0, 1680, 1681, 3, 435, 217, 0, 1681, 1682, 3, 401, 200, 0, 1682, 1683, 3, 417, 208, 0, 1683, 1684, 3, 423, 211, 0, 1684, 1685, 3, 417, 208, 0, 1685, 1686, 3, 427, 213, 0, 1686, 1687, 3, 413, 206, 0, 1687, 340, 1, 0, 0, 0, 1688, 1689, 3, 439, 219, 0, 1689, 1690, 3, 435, 217, 0, 1690, 1691, 3, 417, 208, 0, 1691, 1692, 3, 425, 212, 0, 1692, 342, 1, 0, 0, 0, 1693, 1694, 3, 439, 219, 0, 1694, 1695, 3, 435, 217, 0, 1695, 1696, 3, 441, 220, 0, 1696, 1697, 3, 427, 213, 0, 1697, 1698, 3, 405, 202, 0, 1698, 1699, 3, 401, 200, 0, 1699, 1700, 3, 439, 219, 0, 1700, 1701, 3, 409, 204, 0, 1701, 344, 1, 0, 0, 0, 1702, 1703, 3, 439, 219, 0, 1703, 1704, 3, 439, 219, 0, 1704, 1705, 3, 423, 211, 0, 1705, 346, 1, 0, 0, 0, 1706, 1707, 3, 439, 219, 0, 1707, 1708, 3, 449, 224, 0, 1708, 1709, 3, 431, 215, 0, 1709, 1710, 3, 409, 204, 0, 1710, 348, 1, 0, 0, 0, 1711, 1712, 3, 441, 220, 0, 1712, 1713, 3, 427, 213, 0, 1713, 1714, 3, 403, 201, 0, 1714, 1715, 3, 429, 214, 0, 1715, 1716, 3, 441, 220, 0, 1716, 1717, 3, 427, 213, 0, 1717, 1718, 3, 407, 203, 0, 1718, 1719, 3, 409, 204, 0, 1719, 1720, 3, 407, 203, 0, 1720, 350, 1, 0, 0, 0, 1721, 1722, 3, 441, 220, 0, 1722, 1723, 3, 427, 213, 0, 1723, 1724, 3, 417, 208, 0, 1724, 1725, 3, 429, 214, 0, 1725, 1726, 3, 427, 213, 0, 1726, 352, 1, 0, 0, 0, 1727, 1728, 3, 441, 220, 0, 1728, 1729, 3, 431, 215, 0, 1729, 1730, 3, 407, 203, 0, 1730, 1731, 3, 401, 200, 0, 1731, 1732, 3, 439, 219, 0, 1732, 1733, 3, 409, 204, 0, 1733, 354, 1, 0, 0, 0, 1734, 1735, 3, 441, 220, 0, 1735, 1736, 3, 437, 218, 0, 1736, 1737, 3, 409, 204, 0, 1737, 356, 1, 0, 0, 0, 1738, 1739, 3, 441, 220, 0, 1739, 1740, 3, 437, 218, 0, 1740, 1741, 3, 417, 208, 0, 1741, 1742, 3, 427, 213, 0, 1742, 1743, 3, 413, 206, 0, 1743, 358, 1, 0, 0, 0, 1744, 1745, 3, 441, 220, 0, 1745, 1746, 3, 441, 220, 0, 1746, 1747, 3, 417, 208, 0, 1747, 1748, 3, 407, 203, 0, 1748, 360, 1, 0, 0, 0, 1749, 1750, 3, 443, 221, 0, 1750, 1751, 3, 401, 200, 0, 1751, 1752, 3, 423, 211, 0, 1752, 1753, 3, 441, 220, 0, 1753, 1754, 3, 409, 204, 0, 1754, 1755, 3, 437, 218, 0, 1755, 362, 1, 0, 0, 0, 1756, 1757, 3, 443, 221, 0, 1757, 1758, 3, 417, 208, 0, 1758, 1759, 3, 409, 204, 0, 1759, 1760, 3, 445, 222, 0, 1760, 364, 1, 0, 0, 0, 1761, 1762, 3, 443, 221, 0, 1762, 1763, 3, 429, 214, 0, 1763, 1764, 3, 423, 211, 0, 1764, 1765, 3, 441, 220, 0, 1765, 1766, 3, 425, 212, 0, 1766, 1767, 3, 409, 204, 0, 1767, 366, 1, 0, 0, 0, 1768, 1769, 3, 445, 222, 0, 1769, 1770, 3, 401, 200, 0, 1770, 1771, 3, 439, 219, 0, 1771, 1772, 3, 405, 202, 0, 1772, 1773, 3, 415, 207, 0, 1773, 368, 1, 0, 0, 0, 1774, 1775, 3, 445, 222, 0, 1775, 1776, 3, 409, 204, 0, 1776, 1777, 3, 409, 204, 0, 1777, 1778, 3, 421, 210, 0, 1778, 370, 1, 0, 0, 0, 1779, 1780, 3, 445, 222, 0, 1780, 1781, 3, 415, 207, 0, 1781, 1782, 3, 409, 204, 0, 1782, 1783, 3, 427, 213, 0, 1783, 372, 1, 0, 0, 0, 1784, 1785, 3, 445, 222, 0, 1785, 1786, 3, 415, 207, 0, 1786, 1787, 3, 409, 204, 0, 1787, 1788, 3, 435, 217, 0, 1788, 1789, 3, 409, 204, 0, 1789, 374, 1, 0, 0, 0, 1790, 1791, 3, 445, 222, 0, 1791, 1792, 3, 417, 208, 0, 1792, 1793, 3, 427, 213, 0, 1793, 1794, 3, 407, 203, 0, 1794, 1795, 3, 429, 214, 0, 1795, 1796, 3, 445, 222, 0, 1796, 376, 1, 0, 0, 0, 1797, 1798, 3, 445, 222, 0, 1798, 1799, 3, 417, 208, 0, 1799, 1800, 3, 439, 219, 0, 1800, 1801, 3, 415, 207, 0, 1801, 378, 1, 0, 0, 0, 1802, 1803, 3, 449, 224, 0, 1803, 1804, 3, 409, 204, 0, 1804, 1805, 3, 401, 200, 0, 1805, 1806, 3, 435, 217, 0, 1806, 1813, 1, 0, 0, 0, 1807, 1808, 3, 449, 224, 0, 1808, 1809, 3, 449, 224, 0, 1809, 1810, 3, 449, 224, 0, 1810, 1811, 3, 449, 224, 0, 1811, 1813, 1, 0, 0, 0, 1812, 1802, 1, 0, 0, 0, 1812, 1807, 1, 0, 0, 0, 1813, 380, 1, 0, 0, 0, 1814, 1815, 5, 102, 0, 0, 1815, 1816, 5, 97, 0, 0, 1816, 1817, 5, 108, 0, 0, 1817, 1818, 5, 115, 0, 0, 1818, 1819, 5, 101, 0, 0, 1819, 382, 1, 0, 0, 0, 1820, 1821, 5, 116, 0, 0, 1821, 1822, 5, 114, 0, 0, 1822, 1823, 5, 117, 0, 0, 1823, 1824, 5, 101, 0, 0, 1824, 384, 1, 0, 0, 0, 1825, 1826, 3, 467, 233, 0, 1826, 1827, 3, 403, 201, 0, 1827, 1856, 1, 0, 0, 0, 1828, 1829, 3, 467, 233, 0, 1829, 1830, 3, 411, 205, 0, 1830, 1856, 1, 0, 0, 0, 1831, 1832, 3, 467, 233, 0, 1832, 1833, 3, 435, 217, 0, 1833, 1856, 1, 0, 0, 0, 1834, 1835, 3, 467, 233, 0, 1835, 1836, 3, 427, 213, 0, 1836, 1856, 1, 0, 0, 0, 1837, 1838, 3, 467, 233, 0, 1838, 1839, 3, 439, 219, 0, 1839, 1856, 1, 0, 0, 0, 1840, 1841, 3, 467, 233, 0, 1841, 1842, 5, 48, 0, 0, 1842, 1856, 1, 0, 0, 0, 1843, 1844, 3, 467, 233, 0, 1844, 1845, 3, 401, 200, 0, 1845, 1856, 1, 0, 0, 0, 1846, 1847, 3, 467, 233, 0, 1847, 1848, 3, 443, 221, 0, 1848, 1856, 1, 0, 0, 0, 1849, 1850, 3, 467, 233, 0, 1850, 1851, 3, 467, 233, 0, 1851, 1856, 1, 0, 0, 0, 1852, 1853, 3, 467, 233, 0, 1853, 1854, 3, 511, 255, 0, 1854, 1856, 1, 0, 0, 0, 1855, 1825, 1, 0, 0, 0, 1855, 1828, 1, 0, 0, 0, 1855, 1831, 1, 0, 0, 0, 1855, 1834, 1, 0, 0, 0, 1855, 1837, 1, 0, 0, 0, 1855, 1840, 1, 0, 0, 0, 1855, 1843, 1, 0, 0, 0, 1855, 1846, 1, 0, 0, 0, 1855, 1849, 1, 0, 0, 0, 1855, 1852, 1, 0, 0, 0, 1856, 386, 1, 0, 0, 0, 1857, 1861, 3, 453, 226, 0, 1858, 1861, 3, 523, 261, 0, 1859, 1861, 3, 477, 238, 0, 1860, 1857, 1, 0, 0, 0, 1860, 1858, 1, 0, 0, 0, 1860, 1859, 1, 0, 0, 0, 1861, 1868, 1, 0, 0, 0, 1862, 1867, 3, 453, 226, 0, 1863, 1867, 3, 523, 261, 0, 1864, 1867, 3, 457, 228, 0, 1865, 1867, 3, 477, 238, 0, 1866, 1862, 1, 0, 0, 0, 1866, 1863, 1, 0, 0, 0, 1866, 1864, 1, 0, 0, 0, 1866, 1865, 1, 0, 0, 0, 1867, 1870, 1, 0, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1869, 1, 0, 0, 0, 1869, 1898, 1, 0, 0, 0, 1870, 1868, 1, 0, 0, 0, 1871, 1879, 3, 465, 232, 0, 1872, 1878, 8, 0, 0, 0, 1873, 1878, 3, 385, 192, 0, 1874, 1875, 3, 465, 232, 0, 1875, 1876, 3, 465, 232, 0, 1876, 1878, 1, 0, 0, 0, 1877, 1872, 1, 0, 0, 0, 1877, 1873, 1, 0, 0, 0, 1877, 1874, 1, 0, 0, 0, 1878, 1881, 1, 0, 0, 0, 1879, 1877, 1, 0, 0, 0, 1879, 1880, 1, 0, 0, 0, 1880, 1882, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1882, 1883, 3, 465, 232, 0, 1883, 1898, 1, 0, 0, 0, 1884, 1892, 3, 509, 254, 0, 1885, 1891, 8, 1, 0, 0, 1886, 1891, 3, 385, 192, 0, 1887, 1888, 3, 509, 254, 0, 1888, 1889, 3, 509, 254, 0, 1889, 1891, 1, 0, 0, 0, 1890, 1885, 1, 0, 0, 0, 1890, 1886, 1, 0, 0, 0, 1890, 1887, 1, 0, 0, 0, 1891, 1894, 1, 0, 0, 0, 1892, 1890, 1, 0, 0, 0, 1892, 1893, 1, 0, 0, 0, 1893, 1895, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1895, 1896, 3, 509, 254, 0, 1896, 1898, 1, 0, 0, 0, 1897, 1860, 1, 0, 0, 0, 1897, 1871, 1, 0, 0, 0, 1897, 1884, 1, 0, 0, 0, 1898, 388, 1, 0, 0, 0, 1899, 1900, 3, 395, 197, 0, 1900, 1904, 3, 479, 239, 0, 1901, 1903, 3, 459, 229, 0, 1902, 1901, 1, 0, 0, 0, 1903, 1906, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1909, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1910, 3, 431, 215, 0, 1908, 1910, 3, 409, 204, 0, 1909, 1907, 1, 0, 0, 0, 1909, 1908, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1914, 3, 505, 252, 0, 1912, 1914, 3, 475, 237, 0, 1913, 1911, 1, 0, 0, 0, 1913, 1912, 1, 0, 0, 0, 1913, 1914, 1, 0, 0, 0, 1914, 1916, 1, 0, 0, 0, 1915, 1917, 3, 457, 228, 0, 1916, 1915, 1, 0, 0, 0, 1917, 1918, 1, 0, 0, 0, 1918, 1916, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1976, 1, 0, 0, 0, 1920, 1923, 3, 395, 197, 0, 1921, 1924, 3, 431, 215, 0, 1922, 1924, 3, 409, 204, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1922, 1, 0, 0, 0, 1924, 1927, 1, 0, 0, 0, 1925, 1928, 3, 505, 252, 0, 1926, 1928, 3, 475, 237, 0, 1927, 1925, 1, 0, 0, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1931, 3, 457, 228, 0, 1930, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1976, 1, 0, 0, 0, 1934, 1935, 3, 393, 196, 0, 1935, 1939, 3, 479, 239, 0, 1936, 1938, 3, 457, 228, 0, 1937, 1936, 1, 0, 0, 0, 1938, 1941, 1, 0, 0, 0, 1939, 1937, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1942, 1, 0, 0, 0, 1941, 1939, 1, 0, 0, 0, 1942, 1945, 3, 409, 204, 0, 1943, 1946, 3, 505, 252, 0, 1944, 1946, 3, 475, 237, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1944, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1948, 1, 0, 0, 0, 1947, 1949, 3, 457, 228, 0, 1948, 1947, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1948, 1, 0, 0, 0, 1950, 1951, 1, 0, 0, 0, 1951, 1976, 1, 0, 0, 0, 1952, 1953, 3, 479, 239, 0, 1953, 1954, 3, 393, 196, 0, 1954, 1957, 3, 409, 204, 0, 1955, 1958, 3, 505, 252, 0, 1956, 1958, 3, 475, 237, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1960, 1, 0, 0, 0, 1959, 1961, 3, 457, 228, 0, 1960, 1959, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1976, 1, 0, 0, 0, 1964, 1965, 3, 393, 196, 0, 1965, 1968, 3, 409, 204, 0, 1966, 1969, 3, 505, 252, 0, 1967, 1969, 3, 475, 237, 0, 1968, 1966, 1, 0, 0, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1971, 1, 0, 0, 0, 1970, 1972, 3, 457, 228, 0, 1971, 1970, 1, 0, 0, 0, 1972, 1973, 1, 0, 0, 0, 1973, 1971, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1976, 1, 0, 0, 0, 1975, 1899, 1, 0, 0, 0, 1975, 1920, 1, 0, 0, 0, 1975, 1934, 1, 0, 0, 0, 1975, 1952, 1, 0, 0, 0, 1975, 1964, 1, 0, 0, 0, 1976, 390, 1, 0, 0, 0, 1977, 1979, 5, 48, 0, 0, 1978, 1980, 3, 455, 227, 0, 1979, 1978, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1979, 1, 0, 0, 0, 1981, 1982, 1, 0, 0, 0, 1982, 392, 1, 0, 0, 0, 1983, 1985, 3, 457, 228, 0, 1984, 1983, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 394, 1, 0, 0, 0, 1988, 1989, 5, 48, 0, 0, 1989, 1991, 3, 447, 223, 0, 1990, 1992, 3, 459, 229, 0, 1991, 1990, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 396, 1, 0, 0, 0, 1995, 2003, 3, 511, 255, 0, 1996, 2002, 8, 2, 0, 0, 1997, 2002, 3, 385, 192, 0, 1998, 1999, 3, 511, 255, 0, 1999, 2000, 3, 511, 255, 0, 2000, 2002, 1, 0, 0, 0, 2001, 1996, 1, 0, 0, 0, 2001, 1997, 1, 0, 0, 0, 2001, 1998, 1, 0, 0, 0, 2002, 2005, 1, 0, 0, 0, 2003, 2001, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2006, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2006, 2007, 3, 511, 255, 0, 2007, 398, 1, 0, 0, 0, 2008, 2016, 3, 491, 245, 0, 2009, 2015, 8, 3, 0, 0, 2010, 2015, 3, 385, 192, 0, 2011, 2012, 3, 491, 245, 0, 2012, 2013, 3, 491, 245, 0, 2013, 2015, 1, 0, 0, 0, 2014, 2009, 1, 0, 0, 0, 2014, 2010, 1, 0, 0, 0, 2014, 2011, 1, 0, 0, 0, 2015, 2018, 1, 0, 0, 0, 2016, 2014, 1, 0, 0, 0, 2016, 2017, 1, 0, 0, 0, 2017, 2019, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2019, 2020, 3, 513, 256, 0, 2020, 400, 1, 0, 0, 0, 2021, 2022, 7, 4, 0, 0, 2022, 402, 1, 0, 0, 0, 2023, 2024, 7, 5, 0, 0, 2024, 404, 1, 0, 0, 0, 2025, 2026, 7, 6, 0, 0, 2026, 406, 1, 0, 0, 0, 2027, 2028, 7, 7, 0, 0, 2028, 408, 1, 0, 0, 0, 2029, 2030, 7, 8, 0, 0, 2030, 410, 1, 0, 0, 0, 2031, 2032, 7, 9, 0, 0, 2032, 412, 1, 0, 0, 0, 2033, 2034, 7, 10, 0, 0, 2034, 414, 1, 0, 0, 0, 2035, 2036, 7, 11, 0, 0, 2036, 416, 1, 0, 0, 0, 2037, 2038, 7, 12, 0, 0, 2038, 418, 1, 0, 0, 0, 2039, 2040, 7, 13, 0, 0, 2040, 420, 1, 0, 0, 0, 2041, 2042, 7, 14, 0, 0, 2042, 422, 1, 0, 0, 0, 2043, 2044, 7, 15, 0, 0, 2044, 424, 1, 0, 0, 0, 2045, 2046, 7, 16, 0, 0, 2046, 426, 1, 0, 0, 0, 2047, 2048, 7, 17, 0, 0, 2048, 428, 1, 0, 0, 0, 2049, 2050, 7, 18, 0, 0, 2050, 430, 1, 0, 0, 0, 2051, 2052, 7, 19, 0, 0, 2052, 432, 1, 0, 0, 0, 2053, 2054, 7, 20, 0, 0, 2054, 434, 1, 0, 0, 0, 2055, 2056, 7, 21, 0, 0, 2056, 436, 1, 0, 0, 0, 2057, 2058, 7, 22, 0, 0, 2058, 438, 1, 0, 0, 0, 2059, 2060, 7, 23, 0, 0, 2060, 440, 1, 0, 0, 0, 2061, 2062, 7, 24, 0, 0, 2062, 442, 1, 0, 0, 0, 2063, 2064, 7, 25, 0, 0, 2064, 444, 1, 0, 0, 0, 2065, 2066, 7, 26, 0, 0, 2066, 446, 1, 0, 0, 0, 2067, 2068, 7, 27, 0, 0, 2068, 448, 1, 0, 0, 0, 2069, 2070, 7, 28, 0, 0, 2070, 450, 1, 0, 0, 0, 2071, 2072, 7, 29, 0, 0, 2072, 452, 1, 0, 0, 0, 2073, 2074, 7, 30, 0, 0, 2074, 454, 1, 0, 0, 0, 2075, 2076, 7, 31, 0, 0, 2076, 456, 1, 0, 0, 0, 2077, 2078, 7, 32, 0, 0, 2078, 458, 1, 0, 0, 0, 2079, 2080, 7, 33, 0, 0, 2080, 460, 1, 0, 0, 0, 2081, 2082, 5, 45, 0, 0, 2082, 2083, 5, 62, 0, 0, 2083, 462, 1, 0, 0, 0, 2084, 2085, 5, 42, 0, 0, 2085, 464, 1, 0, 0, 0, 2086, 2087, 5, 96, 0, 0, 2087, 466, 1, 0, 0, 0, 2088, 2089, 5, 92, 0, 0, 2089, 468, 1, 0, 0, 0, 2090, 2091, 5, 58, 0, 0, 2091, 470, 1, 0, 0, 0, 2092, 2093, 5, 44, 0, 0, 2093, 472, 1, 0, 0, 0, 2094, 2095, 5, 124, 0, 0, 2095, 2096, 5, 124, 0, 0, 2096, 474, 1, 0, 0, 0, 2097, 2098, 5, 45, 0, 0, 2098, 476, 1, 0, 0, 0, 2099, 2100, 5, 36, 0, 0, 2100, 478, 1, 0, 0, 0, 2101, 2102, 5, 46, 0, 0, 2102, 480, 1, 0, 0, 0, 2103, 2104, 5, 61, 0, 0, 2104, 2105, 5, 61, 0, 0, 2105, 482, 1, 0, 0, 0, 2106, 2107, 5, 61, 0, 0, 2107, 484, 1, 0, 0, 0, 2108, 2109, 5, 62, 0, 0, 2109, 2110, 5, 61, 0, 0, 2110, 486, 1, 0, 0, 0, 2111, 2112, 5, 62, 0, 0, 2112, 488, 1, 0, 0, 0, 2113, 2114, 5, 35, 0, 0, 2114, 490, 1, 0, 0, 0, 2115, 2116, 5, 123, 0, 0, 2116, 492, 1, 0, 0, 0, 2117, 2118, 5, 91, 0, 0, 2118, 494, 1, 0, 0, 0, 2119, 2120, 5, 40, 0, 0, 2120, 496, 1, 0, 0, 0, 2121, 2122, 5, 60, 0, 0, 2122, 2123, 5, 61, 0, 0, 2123, 498, 1, 0, 0, 0, 2124, 2125, 5, 60, 0, 0, 2125, 500, 1, 0, 0, 0, 2126, 2127, 5, 33, 0, 0, 2127, 2131, 5, 61, 0, 0, 2128, 2129, 5, 60, 0, 0, 2129, 2131, 5, 62, 0, 0, 2130, 2126, 1, 0, 0, 0, 2130, 2128, 1, 0, 0, 0, 2131, 502, 1, 0, 0, 0, 2132, 2133, 5, 37, 0, 0, 2133, 504, 1, 0, 0, 0, 2134, 2135, 5, 43, 0, 0, 2135, 506, 1, 0, 0, 0, 2136, 2137, 5, 63, 0, 0, 2137, 508, 1, 0, 0, 0, 2138, 2139, 5, 34, 0, 0, 2139, 510, 1, 0, 0, 0, 2140, 2141, 5, 39, 0, 0, 2141, 512, 1, 0, 0, 0, 2142, 2143, 5, 125, 0, 0, 2143, 514, 1, 0, 0, 0, 2144, 2145, 5, 93, 0, 0, 2145, 516, 1, 0, 0, 0, 2146, 2147, 5, 41, 0, 0, 2147, 518, 1, 0, 0, 0, 2148, 2149, 5, 59, 0, 0, 2149, 520, 1, 0, 0, 0, 2150, 2151, 5, 47, 0, 0, 2151, 522, 1, 0, 0, 0, 2152, 2153, 5, 95, 0, 0, 2153, 524, 1, 0, 0, 0, 2154, 2155, 5, 47, 0, 0, 2155, 2156, 5, 42, 0, 0, 2156, 2160, 1, 0, 0, 0, 2157, 2159, 9, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 2162, 1, 0, 0, 0, 2160, 2161, 1, 0, 0, 0, 2160, 2158, 1, 0, 0, 0, 2161, 2163, 1, 0, 0, 0, 2162, 2160, 1, 0, 0, 0, 2163, 2164, 5, 42, 0, 0, 2164, 2165, 5, 47, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2167, 6, 262, 0, 0, 2167, 526, 1, 0, 0, 0, 2168, 2169, 5, 45, 0, 0, 2169, 2170, 5, 45, 0, 0, 2170, 2174, 1, 0, 0, 0, 2171, 2173, 8, 34, 0, 0, 2172, 2171, 1, 0, 0, 0, 2173, 2176, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2174, 2175, 1, 0, 0, 0, 2175, 2178, 1, 0, 0, 0, 2176, 2174, 1, 0, 0, 0, 2177, 2179, 7, 35, 0, 0, 2178, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2181, 6, 263, 0, 0, 2181, 528, 1, 0, 0, 0, 2182, 2183, 7, 36, 0, 0, 2183, 2184, 1, 0, 0, 0, 2184, 2185, 6, 264, 1, 0, 2185, 530, 1, 0, 0, 0, 39, 0, 593, 1098, 1812, 1855, 1860, 1866, 1868, 1877, 1879, 1890, 1892, 1897, 1904, 1909, 1913, 1918, 1923, 1927, 1932, 1939, 1945, 1950, 1957, 1962, 1968, 1973, 1975, 1981, 1986, 1993, 2001, 2003, 2014, 2016, 2130, 2160, 2174, 2178, 2, 6, 0, 0, 0, 1, 0] \ No newline at end of file +[4, 0, 241, 2217, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 606, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1111, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 1825, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 1868, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 1873, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1879, 8, 193, 10, 193, 12, 193, 1882, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1890, 8, 193, 10, 193, 12, 193, 1893, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1903, 8, 193, 10, 193, 12, 193, 1906, 9, 193, 1, 193, 1, 193, 3, 193, 1910, 8, 193, 1, 194, 1, 194, 1, 194, 5, 194, 1915, 8, 194, 10, 194, 12, 194, 1918, 9, 194, 1, 194, 1, 194, 3, 194, 1922, 8, 194, 1, 194, 1, 194, 3, 194, 1926, 8, 194, 1, 194, 4, 194, 1929, 8, 194, 11, 194, 12, 194, 1930, 1, 194, 1, 194, 1, 194, 3, 194, 1936, 8, 194, 1, 194, 1, 194, 3, 194, 1940, 8, 194, 1, 194, 4, 194, 1943, 8, 194, 11, 194, 12, 194, 1944, 1, 194, 1, 194, 1, 194, 5, 194, 1950, 8, 194, 10, 194, 12, 194, 1953, 9, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1958, 8, 194, 1, 194, 4, 194, 1961, 8, 194, 11, 194, 12, 194, 1962, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1970, 8, 194, 1, 194, 4, 194, 1973, 8, 194, 11, 194, 12, 194, 1974, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1981, 8, 194, 1, 194, 4, 194, 1984, 8, 194, 11, 194, 12, 194, 1985, 3, 194, 1988, 8, 194, 1, 195, 1, 195, 4, 195, 1992, 8, 195, 11, 195, 12, 195, 1993, 1, 196, 4, 196, 1997, 8, 196, 11, 196, 12, 196, 1998, 1, 197, 1, 197, 1, 197, 4, 197, 2004, 8, 197, 11, 197, 12, 197, 2005, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2014, 8, 198, 10, 198, 12, 198, 2017, 9, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2027, 8, 199, 10, 199, 12, 199, 2030, 9, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 1, 223, 1, 223, 1, 224, 1, 224, 1, 225, 1, 225, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 2150, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 261, 1, 261, 1, 261, 1, 262, 1, 262, 1, 263, 1, 263, 1, 264, 1, 264, 1, 265, 1, 265, 1, 266, 1, 266, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 5, 268, 2190, 8, 268, 10, 268, 12, 268, 2193, 9, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 2204, 8, 269, 10, 269, 12, 269, 2207, 9, 269, 1, 269, 3, 269, 2210, 8, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 1, 2191, 0, 271, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 0, 451, 0, 453, 0, 455, 0, 457, 0, 459, 0, 461, 201, 463, 202, 465, 203, 467, 204, 469, 205, 471, 206, 473, 207, 475, 208, 477, 209, 479, 210, 481, 211, 483, 212, 485, 213, 487, 214, 489, 215, 491, 216, 493, 217, 495, 218, 497, 219, 499, 220, 501, 221, 503, 222, 505, 223, 507, 224, 509, 225, 511, 226, 513, 227, 515, 228, 517, 229, 519, 230, 521, 231, 523, 232, 525, 233, 527, 234, 529, 235, 531, 236, 533, 237, 535, 238, 537, 239, 539, 240, 541, 241, 1, 0, 37, 2, 0, 92, 92, 96, 96, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 2, 0, 92, 92, 125, 125, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 65, 90, 97, 122, 1, 0, 48, 55, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 2, 0, 10, 10, 13, 13, 2, 1, 10, 10, 13, 13, 2, 0, 9, 13, 32, 32, 2247, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 1, 543, 1, 0, 0, 0, 3, 547, 1, 0, 0, 0, 5, 553, 1, 0, 0, 0, 7, 559, 1, 0, 0, 0, 9, 563, 1, 0, 0, 0, 11, 569, 1, 0, 0, 0, 13, 573, 1, 0, 0, 0, 15, 578, 1, 0, 0, 0, 17, 582, 1, 0, 0, 0, 19, 588, 1, 0, 0, 0, 21, 605, 1, 0, 0, 0, 23, 607, 1, 0, 0, 0, 25, 612, 1, 0, 0, 0, 27, 616, 1, 0, 0, 0, 29, 622, 1, 0, 0, 0, 31, 629, 1, 0, 0, 0, 33, 637, 1, 0, 0, 0, 35, 642, 1, 0, 0, 0, 37, 645, 1, 0, 0, 0, 39, 650, 1, 0, 0, 0, 41, 655, 1, 0, 0, 0, 43, 661, 1, 0, 0, 0, 45, 667, 1, 0, 0, 0, 47, 675, 1, 0, 0, 0, 49, 681, 1, 0, 0, 0, 51, 688, 1, 0, 0, 0, 53, 696, 1, 0, 0, 0, 55, 703, 1, 0, 0, 0, 57, 711, 1, 0, 0, 0, 59, 722, 1, 0, 0, 0, 61, 729, 1, 0, 0, 0, 63, 735, 1, 0, 0, 0, 65, 740, 1, 0, 0, 0, 67, 748, 1, 0, 0, 0, 69, 757, 1, 0, 0, 0, 71, 767, 1, 0, 0, 0, 73, 772, 1, 0, 0, 0, 75, 776, 1, 0, 0, 0, 77, 788, 1, 0, 0, 0, 79, 796, 1, 0, 0, 0, 81, 802, 1, 0, 0, 0, 83, 809, 1, 0, 0, 0, 85, 814, 1, 0, 0, 0, 87, 825, 1, 0, 0, 0, 89, 834, 1, 0, 0, 0, 91, 841, 1, 0, 0, 0, 93, 854, 1, 0, 0, 0, 95, 865, 1, 0, 0, 0, 97, 870, 1, 0, 0, 0, 99, 879, 1, 0, 0, 0, 101, 891, 1, 0, 0, 0, 103, 896, 1, 0, 0, 0, 105, 901, 1, 0, 0, 0, 107, 905, 1, 0, 0, 0, 109, 912, 1, 0, 0, 0, 111, 919, 1, 0, 0, 0, 113, 926, 1, 0, 0, 0, 115, 934, 1, 0, 0, 0, 117, 945, 1, 0, 0, 0, 119, 953, 1, 0, 0, 0, 121, 961, 1, 0, 0, 0, 123, 967, 1, 0, 0, 0, 125, 973, 1, 0, 0, 0, 127, 979, 1, 0, 0, 0, 129, 989, 1, 0, 0, 0, 131, 993, 1, 0, 0, 0, 133, 1000, 1, 0, 0, 0, 135, 1007, 1, 0, 0, 0, 137, 1012, 1, 0, 0, 0, 139, 1017, 1, 0, 0, 0, 141, 1026, 1, 0, 0, 0, 143, 1033, 1, 0, 0, 0, 145, 1045, 1, 0, 0, 0, 147, 1051, 1, 0, 0, 0, 149, 1058, 1, 0, 0, 0, 151, 1071, 1, 0, 0, 0, 153, 1076, 1, 0, 0, 0, 155, 1079, 1, 0, 0, 0, 157, 1082, 1, 0, 0, 0, 159, 1088, 1, 0, 0, 0, 161, 1091, 1, 0, 0, 0, 163, 1110, 1, 0, 0, 0, 165, 1112, 1, 0, 0, 0, 167, 1122, 1, 0, 0, 0, 169, 1128, 1, 0, 0, 0, 171, 1135, 1, 0, 0, 0, 173, 1144, 1, 0, 0, 0, 175, 1149, 1, 0, 0, 0, 177, 1152, 1, 0, 0, 0, 179, 1165, 1, 0, 0, 0, 181, 1170, 1, 0, 0, 0, 183, 1174, 1, 0, 0, 0, 185, 1179, 1, 0, 0, 0, 187, 1184, 1, 0, 0, 0, 189, 1191, 1, 0, 0, 0, 191, 1199, 1, 0, 0, 0, 193, 1204, 1, 0, 0, 0, 195, 1213, 1, 0, 0, 0, 197, 1218, 1, 0, 0, 0, 199, 1224, 1, 0, 0, 0, 201, 1229, 1, 0, 0, 0, 203, 1235, 1, 0, 0, 0, 205, 1240, 1, 0, 0, 0, 207, 1252, 1, 0, 0, 0, 209, 1265, 1, 0, 0, 0, 211, 1269, 1, 0, 0, 0, 213, 1276, 1, 0, 0, 0, 215, 1280, 1, 0, 0, 0, 217, 1287, 1, 0, 0, 0, 219, 1294, 1, 0, 0, 0, 221, 1300, 1, 0, 0, 0, 223, 1305, 1, 0, 0, 0, 225, 1314, 1, 0, 0, 0, 227, 1318, 1, 0, 0, 0, 229, 1321, 1, 0, 0, 0, 231, 1325, 1, 0, 0, 0, 233, 1330, 1, 0, 0, 0, 235, 1336, 1, 0, 0, 0, 237, 1343, 1, 0, 0, 0, 239, 1346, 1, 0, 0, 0, 241, 1355, 1, 0, 0, 0, 243, 1358, 1, 0, 0, 0, 245, 1364, 1, 0, 0, 0, 247, 1370, 1, 0, 0, 0, 249, 1378, 1, 0, 0, 0, 251, 1383, 1, 0, 0, 0, 253, 1393, 1, 0, 0, 0, 255, 1402, 1, 0, 0, 0, 257, 1412, 1, 0, 0, 0, 259, 1421, 1, 0, 0, 0, 261, 1429, 1, 0, 0, 0, 263, 1440, 1, 0, 0, 0, 265, 1448, 1, 0, 0, 0, 267, 1454, 1, 0, 0, 0, 269, 1461, 1, 0, 0, 0, 271, 1468, 1, 0, 0, 0, 273, 1475, 1, 0, 0, 0, 275, 1483, 1, 0, 0, 0, 277, 1491, 1, 0, 0, 0, 279, 1502, 1, 0, 0, 0, 281, 1508, 1, 0, 0, 0, 283, 1515, 1, 0, 0, 0, 285, 1519, 1, 0, 0, 0, 287, 1524, 1, 0, 0, 0, 289, 1531, 1, 0, 0, 0, 291, 1538, 1, 0, 0, 0, 293, 1545, 1, 0, 0, 0, 295, 1550, 1, 0, 0, 0, 297, 1556, 1, 0, 0, 0, 299, 1560, 1, 0, 0, 0, 301, 1569, 1, 0, 0, 0, 303, 1574, 1, 0, 0, 0, 305, 1581, 1, 0, 0, 0, 307, 1587, 1, 0, 0, 0, 309, 1592, 1, 0, 0, 0, 311, 1602, 1, 0, 0, 0, 313, 1607, 1, 0, 0, 0, 315, 1614, 1, 0, 0, 0, 317, 1621, 1, 0, 0, 0, 319, 1627, 1, 0, 0, 0, 321, 1634, 1, 0, 0, 0, 323, 1644, 1, 0, 0, 0, 325, 1649, 1, 0, 0, 0, 327, 1654, 1, 0, 0, 0, 329, 1659, 1, 0, 0, 0, 331, 1667, 1, 0, 0, 0, 333, 1677, 1, 0, 0, 0, 335, 1680, 1, 0, 0, 0, 337, 1684, 1, 0, 0, 0, 339, 1691, 1, 0, 0, 0, 341, 1700, 1, 0, 0, 0, 343, 1705, 1, 0, 0, 0, 345, 1714, 1, 0, 0, 0, 347, 1718, 1, 0, 0, 0, 349, 1723, 1, 0, 0, 0, 351, 1733, 1, 0, 0, 0, 353, 1739, 1, 0, 0, 0, 355, 1746, 1, 0, 0, 0, 357, 1750, 1, 0, 0, 0, 359, 1756, 1, 0, 0, 0, 361, 1761, 1, 0, 0, 0, 363, 1768, 1, 0, 0, 0, 365, 1773, 1, 0, 0, 0, 367, 1780, 1, 0, 0, 0, 369, 1786, 1, 0, 0, 0, 371, 1791, 1, 0, 0, 0, 373, 1796, 1, 0, 0, 0, 375, 1802, 1, 0, 0, 0, 377, 1809, 1, 0, 0, 0, 379, 1824, 1, 0, 0, 0, 381, 1826, 1, 0, 0, 0, 383, 1832, 1, 0, 0, 0, 385, 1867, 1, 0, 0, 0, 387, 1909, 1, 0, 0, 0, 389, 1987, 1, 0, 0, 0, 391, 1989, 1, 0, 0, 0, 393, 1996, 1, 0, 0, 0, 395, 2000, 1, 0, 0, 0, 397, 2007, 1, 0, 0, 0, 399, 2020, 1, 0, 0, 0, 401, 2033, 1, 0, 0, 0, 403, 2035, 1, 0, 0, 0, 405, 2037, 1, 0, 0, 0, 407, 2039, 1, 0, 0, 0, 409, 2041, 1, 0, 0, 0, 411, 2043, 1, 0, 0, 0, 413, 2045, 1, 0, 0, 0, 415, 2047, 1, 0, 0, 0, 417, 2049, 1, 0, 0, 0, 419, 2051, 1, 0, 0, 0, 421, 2053, 1, 0, 0, 0, 423, 2055, 1, 0, 0, 0, 425, 2057, 1, 0, 0, 0, 427, 2059, 1, 0, 0, 0, 429, 2061, 1, 0, 0, 0, 431, 2063, 1, 0, 0, 0, 433, 2065, 1, 0, 0, 0, 435, 2067, 1, 0, 0, 0, 437, 2069, 1, 0, 0, 0, 439, 2071, 1, 0, 0, 0, 441, 2073, 1, 0, 0, 0, 443, 2075, 1, 0, 0, 0, 445, 2077, 1, 0, 0, 0, 447, 2079, 1, 0, 0, 0, 449, 2081, 1, 0, 0, 0, 451, 2083, 1, 0, 0, 0, 453, 2085, 1, 0, 0, 0, 455, 2087, 1, 0, 0, 0, 457, 2089, 1, 0, 0, 0, 459, 2091, 1, 0, 0, 0, 461, 2093, 1, 0, 0, 0, 463, 2096, 1, 0, 0, 0, 465, 2098, 1, 0, 0, 0, 467, 2100, 1, 0, 0, 0, 469, 2102, 1, 0, 0, 0, 471, 2104, 1, 0, 0, 0, 473, 2106, 1, 0, 0, 0, 475, 2109, 1, 0, 0, 0, 477, 2111, 1, 0, 0, 0, 479, 2113, 1, 0, 0, 0, 481, 2115, 1, 0, 0, 0, 483, 2118, 1, 0, 0, 0, 485, 2120, 1, 0, 0, 0, 487, 2123, 1, 0, 0, 0, 489, 2125, 1, 0, 0, 0, 491, 2127, 1, 0, 0, 0, 493, 2130, 1, 0, 0, 0, 495, 2134, 1, 0, 0, 0, 497, 2136, 1, 0, 0, 0, 499, 2138, 1, 0, 0, 0, 501, 2140, 1, 0, 0, 0, 503, 2143, 1, 0, 0, 0, 505, 2149, 1, 0, 0, 0, 507, 2151, 1, 0, 0, 0, 509, 2155, 1, 0, 0, 0, 511, 2158, 1, 0, 0, 0, 513, 2160, 1, 0, 0, 0, 515, 2162, 1, 0, 0, 0, 517, 2164, 1, 0, 0, 0, 519, 2166, 1, 0, 0, 0, 521, 2168, 1, 0, 0, 0, 523, 2170, 1, 0, 0, 0, 525, 2173, 1, 0, 0, 0, 527, 2175, 1, 0, 0, 0, 529, 2177, 1, 0, 0, 0, 531, 2179, 1, 0, 0, 0, 533, 2181, 1, 0, 0, 0, 535, 2183, 1, 0, 0, 0, 537, 2185, 1, 0, 0, 0, 539, 2199, 1, 0, 0, 0, 541, 2213, 1, 0, 0, 0, 543, 544, 3, 401, 200, 0, 544, 545, 3, 407, 203, 0, 545, 546, 3, 407, 203, 0, 546, 2, 1, 0, 0, 0, 547, 548, 3, 401, 200, 0, 548, 549, 3, 411, 205, 0, 549, 550, 3, 439, 219, 0, 550, 551, 3, 409, 204, 0, 551, 552, 3, 435, 217, 0, 552, 4, 1, 0, 0, 0, 553, 554, 3, 401, 200, 0, 554, 555, 3, 423, 211, 0, 555, 556, 3, 417, 208, 0, 556, 557, 3, 401, 200, 0, 557, 558, 3, 437, 218, 0, 558, 6, 1, 0, 0, 0, 559, 560, 3, 401, 200, 0, 560, 561, 3, 423, 211, 0, 561, 562, 3, 423, 211, 0, 562, 8, 1, 0, 0, 0, 563, 564, 3, 401, 200, 0, 564, 565, 3, 423, 211, 0, 565, 566, 3, 439, 219, 0, 566, 567, 3, 409, 204, 0, 567, 568, 3, 435, 217, 0, 568, 10, 1, 0, 0, 0, 569, 570, 3, 401, 200, 0, 570, 571, 3, 427, 213, 0, 571, 572, 3, 407, 203, 0, 572, 12, 1, 0, 0, 0, 573, 574, 3, 401, 200, 0, 574, 575, 3, 427, 213, 0, 575, 576, 3, 439, 219, 0, 576, 577, 3, 417, 208, 0, 577, 14, 1, 0, 0, 0, 578, 579, 3, 401, 200, 0, 579, 580, 3, 427, 213, 0, 580, 581, 3, 449, 224, 0, 581, 16, 1, 0, 0, 0, 582, 583, 3, 401, 200, 0, 583, 584, 3, 435, 217, 0, 584, 585, 3, 435, 217, 0, 585, 586, 3, 401, 200, 0, 586, 587, 3, 449, 224, 0, 587, 18, 1, 0, 0, 0, 588, 589, 3, 401, 200, 0, 589, 590, 3, 437, 218, 0, 590, 20, 1, 0, 0, 0, 591, 592, 3, 401, 200, 0, 592, 593, 3, 437, 218, 0, 593, 594, 3, 405, 202, 0, 594, 606, 1, 0, 0, 0, 595, 596, 3, 401, 200, 0, 596, 597, 3, 437, 218, 0, 597, 598, 3, 405, 202, 0, 598, 599, 3, 409, 204, 0, 599, 600, 3, 427, 213, 0, 600, 601, 3, 407, 203, 0, 601, 602, 3, 417, 208, 0, 602, 603, 3, 427, 213, 0, 603, 604, 3, 413, 206, 0, 604, 606, 1, 0, 0, 0, 605, 591, 1, 0, 0, 0, 605, 595, 1, 0, 0, 0, 606, 22, 1, 0, 0, 0, 607, 608, 3, 401, 200, 0, 608, 609, 3, 437, 218, 0, 609, 610, 3, 429, 214, 0, 610, 611, 3, 411, 205, 0, 611, 24, 1, 0, 0, 0, 612, 613, 3, 401, 200, 0, 613, 614, 3, 437, 218, 0, 614, 615, 3, 439, 219, 0, 615, 26, 1, 0, 0, 0, 616, 617, 3, 401, 200, 0, 617, 618, 3, 437, 218, 0, 618, 619, 3, 449, 224, 0, 619, 620, 3, 427, 213, 0, 620, 621, 3, 405, 202, 0, 621, 28, 1, 0, 0, 0, 622, 623, 3, 401, 200, 0, 623, 624, 3, 439, 219, 0, 624, 625, 3, 439, 219, 0, 625, 626, 3, 401, 200, 0, 626, 627, 3, 405, 202, 0, 627, 628, 3, 415, 207, 0, 628, 30, 1, 0, 0, 0, 629, 630, 3, 403, 201, 0, 630, 631, 3, 409, 204, 0, 631, 632, 3, 439, 219, 0, 632, 633, 3, 445, 222, 0, 633, 634, 3, 409, 204, 0, 634, 635, 3, 409, 204, 0, 635, 636, 3, 427, 213, 0, 636, 32, 1, 0, 0, 0, 637, 638, 3, 403, 201, 0, 638, 639, 3, 429, 214, 0, 639, 640, 3, 439, 219, 0, 640, 641, 3, 415, 207, 0, 641, 34, 1, 0, 0, 0, 642, 643, 3, 403, 201, 0, 643, 644, 3, 449, 224, 0, 644, 36, 1, 0, 0, 0, 645, 646, 3, 405, 202, 0, 646, 647, 3, 401, 200, 0, 647, 648, 3, 437, 218, 0, 648, 649, 3, 409, 204, 0, 649, 38, 1, 0, 0, 0, 650, 651, 3, 405, 202, 0, 651, 652, 3, 401, 200, 0, 652, 653, 3, 437, 218, 0, 653, 654, 3, 439, 219, 0, 654, 40, 1, 0, 0, 0, 655, 656, 3, 405, 202, 0, 656, 657, 3, 415, 207, 0, 657, 658, 3, 409, 204, 0, 658, 659, 3, 405, 202, 0, 659, 660, 3, 421, 210, 0, 660, 42, 1, 0, 0, 0, 661, 662, 3, 405, 202, 0, 662, 663, 3, 423, 211, 0, 663, 664, 3, 409, 204, 0, 664, 665, 3, 401, 200, 0, 665, 666, 3, 435, 217, 0, 666, 44, 1, 0, 0, 0, 667, 668, 3, 405, 202, 0, 668, 669, 3, 423, 211, 0, 669, 670, 3, 441, 220, 0, 670, 671, 3, 437, 218, 0, 671, 672, 3, 439, 219, 0, 672, 673, 3, 409, 204, 0, 673, 674, 3, 435, 217, 0, 674, 46, 1, 0, 0, 0, 675, 676, 3, 405, 202, 0, 676, 677, 3, 429, 214, 0, 677, 678, 3, 407, 203, 0, 678, 679, 3, 409, 204, 0, 679, 680, 3, 405, 202, 0, 680, 48, 1, 0, 0, 0, 681, 682, 3, 405, 202, 0, 682, 683, 3, 429, 214, 0, 683, 684, 3, 415, 207, 0, 684, 685, 3, 429, 214, 0, 685, 686, 3, 435, 217, 0, 686, 687, 3, 439, 219, 0, 687, 50, 1, 0, 0, 0, 688, 689, 3, 405, 202, 0, 689, 690, 3, 429, 214, 0, 690, 691, 3, 423, 211, 0, 691, 692, 3, 423, 211, 0, 692, 693, 3, 401, 200, 0, 693, 694, 3, 439, 219, 0, 694, 695, 3, 409, 204, 0, 695, 52, 1, 0, 0, 0, 696, 697, 3, 405, 202, 0, 697, 698, 3, 429, 214, 0, 698, 699, 3, 423, 211, 0, 699, 700, 3, 441, 220, 0, 700, 701, 3, 425, 212, 0, 701, 702, 3, 427, 213, 0, 702, 54, 1, 0, 0, 0, 703, 704, 3, 405, 202, 0, 704, 705, 3, 429, 214, 0, 705, 706, 3, 425, 212, 0, 706, 707, 3, 425, 212, 0, 707, 708, 3, 409, 204, 0, 708, 709, 3, 427, 213, 0, 709, 710, 3, 439, 219, 0, 710, 56, 1, 0, 0, 0, 711, 712, 3, 405, 202, 0, 712, 713, 3, 429, 214, 0, 713, 714, 3, 427, 213, 0, 714, 715, 3, 437, 218, 0, 715, 716, 3, 439, 219, 0, 716, 717, 3, 435, 217, 0, 717, 718, 3, 401, 200, 0, 718, 719, 3, 417, 208, 0, 719, 720, 3, 427, 213, 0, 720, 721, 3, 439, 219, 0, 721, 58, 1, 0, 0, 0, 722, 723, 3, 405, 202, 0, 723, 724, 3, 435, 217, 0, 724, 725, 3, 409, 204, 0, 725, 726, 3, 401, 200, 0, 726, 727, 3, 439, 219, 0, 727, 728, 3, 409, 204, 0, 728, 60, 1, 0, 0, 0, 729, 730, 3, 405, 202, 0, 730, 731, 3, 435, 217, 0, 731, 732, 3, 429, 214, 0, 732, 733, 3, 437, 218, 0, 733, 734, 3, 437, 218, 0, 734, 62, 1, 0, 0, 0, 735, 736, 3, 405, 202, 0, 736, 737, 3, 441, 220, 0, 737, 738, 3, 403, 201, 0, 738, 739, 3, 409, 204, 0, 739, 64, 1, 0, 0, 0, 740, 741, 3, 405, 202, 0, 741, 742, 3, 441, 220, 0, 742, 743, 3, 435, 217, 0, 743, 744, 3, 435, 217, 0, 744, 745, 3, 409, 204, 0, 745, 746, 3, 427, 213, 0, 746, 747, 3, 439, 219, 0, 747, 66, 1, 0, 0, 0, 748, 749, 3, 407, 203, 0, 749, 750, 3, 401, 200, 0, 750, 751, 3, 439, 219, 0, 751, 752, 3, 401, 200, 0, 752, 753, 3, 403, 201, 0, 753, 754, 3, 401, 200, 0, 754, 755, 3, 437, 218, 0, 755, 756, 3, 409, 204, 0, 756, 68, 1, 0, 0, 0, 757, 758, 3, 407, 203, 0, 758, 759, 3, 401, 200, 0, 759, 760, 3, 439, 219, 0, 760, 761, 3, 401, 200, 0, 761, 762, 3, 403, 201, 0, 762, 763, 3, 401, 200, 0, 763, 764, 3, 437, 218, 0, 764, 765, 3, 409, 204, 0, 765, 766, 3, 437, 218, 0, 766, 70, 1, 0, 0, 0, 767, 768, 3, 407, 203, 0, 768, 769, 3, 401, 200, 0, 769, 770, 3, 439, 219, 0, 770, 771, 3, 409, 204, 0, 771, 72, 1, 0, 0, 0, 772, 773, 3, 407, 203, 0, 773, 774, 3, 401, 200, 0, 774, 775, 3, 449, 224, 0, 775, 74, 1, 0, 0, 0, 776, 777, 3, 407, 203, 0, 777, 778, 3, 409, 204, 0, 778, 779, 3, 407, 203, 0, 779, 780, 3, 441, 220, 0, 780, 781, 3, 431, 215, 0, 781, 782, 3, 423, 211, 0, 782, 783, 3, 417, 208, 0, 783, 784, 3, 405, 202, 0, 784, 785, 3, 401, 200, 0, 785, 786, 3, 439, 219, 0, 786, 787, 3, 409, 204, 0, 787, 76, 1, 0, 0, 0, 788, 789, 3, 407, 203, 0, 789, 790, 3, 409, 204, 0, 790, 791, 3, 411, 205, 0, 791, 792, 3, 401, 200, 0, 792, 793, 3, 441, 220, 0, 793, 794, 3, 423, 211, 0, 794, 795, 3, 439, 219, 0, 795, 78, 1, 0, 0, 0, 796, 797, 3, 407, 203, 0, 797, 798, 3, 409, 204, 0, 798, 799, 3, 423, 211, 0, 799, 800, 3, 401, 200, 0, 800, 801, 3, 449, 224, 0, 801, 80, 1, 0, 0, 0, 802, 803, 3, 407, 203, 0, 803, 804, 3, 409, 204, 0, 804, 805, 3, 423, 211, 0, 805, 806, 3, 409, 204, 0, 806, 807, 3, 439, 219, 0, 807, 808, 3, 409, 204, 0, 808, 82, 1, 0, 0, 0, 809, 810, 3, 407, 203, 0, 810, 811, 3, 409, 204, 0, 811, 812, 3, 437, 218, 0, 812, 813, 3, 405, 202, 0, 813, 84, 1, 0, 0, 0, 814, 815, 3, 407, 203, 0, 815, 816, 3, 409, 204, 0, 816, 817, 3, 437, 218, 0, 817, 818, 3, 405, 202, 0, 818, 819, 3, 409, 204, 0, 819, 820, 3, 427, 213, 0, 820, 821, 3, 407, 203, 0, 821, 822, 3, 417, 208, 0, 822, 823, 3, 427, 213, 0, 823, 824, 3, 413, 206, 0, 824, 86, 1, 0, 0, 0, 825, 826, 3, 407, 203, 0, 826, 827, 3, 409, 204, 0, 827, 828, 3, 437, 218, 0, 828, 829, 3, 405, 202, 0, 829, 830, 3, 435, 217, 0, 830, 831, 3, 417, 208, 0, 831, 832, 3, 403, 201, 0, 832, 833, 3, 409, 204, 0, 833, 88, 1, 0, 0, 0, 834, 835, 3, 407, 203, 0, 835, 836, 3, 409, 204, 0, 836, 837, 3, 439, 219, 0, 837, 838, 3, 401, 200, 0, 838, 839, 3, 405, 202, 0, 839, 840, 3, 415, 207, 0, 840, 90, 1, 0, 0, 0, 841, 842, 3, 407, 203, 0, 842, 843, 3, 417, 208, 0, 843, 844, 3, 405, 202, 0, 844, 845, 3, 439, 219, 0, 845, 846, 3, 417, 208, 0, 846, 847, 3, 429, 214, 0, 847, 848, 3, 427, 213, 0, 848, 849, 3, 401, 200, 0, 849, 850, 3, 435, 217, 0, 850, 851, 3, 417, 208, 0, 851, 852, 3, 409, 204, 0, 852, 853, 3, 437, 218, 0, 853, 92, 1, 0, 0, 0, 854, 855, 3, 407, 203, 0, 855, 856, 3, 417, 208, 0, 856, 857, 3, 405, 202, 0, 857, 858, 3, 439, 219, 0, 858, 859, 3, 417, 208, 0, 859, 860, 3, 429, 214, 0, 860, 861, 3, 427, 213, 0, 861, 862, 3, 401, 200, 0, 862, 863, 3, 435, 217, 0, 863, 864, 3, 449, 224, 0, 864, 94, 1, 0, 0, 0, 865, 866, 3, 407, 203, 0, 866, 867, 3, 417, 208, 0, 867, 868, 3, 437, 218, 0, 868, 869, 3, 421, 210, 0, 869, 96, 1, 0, 0, 0, 870, 871, 3, 407, 203, 0, 871, 872, 3, 417, 208, 0, 872, 873, 3, 437, 218, 0, 873, 874, 3, 439, 219, 0, 874, 875, 3, 417, 208, 0, 875, 876, 3, 427, 213, 0, 876, 877, 3, 405, 202, 0, 877, 878, 3, 439, 219, 0, 878, 98, 1, 0, 0, 0, 879, 880, 3, 407, 203, 0, 880, 881, 3, 417, 208, 0, 881, 882, 3, 437, 218, 0, 882, 883, 3, 439, 219, 0, 883, 884, 3, 435, 217, 0, 884, 885, 3, 417, 208, 0, 885, 886, 3, 403, 201, 0, 886, 887, 3, 441, 220, 0, 887, 888, 3, 439, 219, 0, 888, 889, 3, 409, 204, 0, 889, 890, 3, 407, 203, 0, 890, 100, 1, 0, 0, 0, 891, 892, 3, 407, 203, 0, 892, 893, 3, 435, 217, 0, 893, 894, 3, 429, 214, 0, 894, 895, 3, 431, 215, 0, 895, 102, 1, 0, 0, 0, 896, 897, 3, 409, 204, 0, 897, 898, 3, 423, 211, 0, 898, 899, 3, 437, 218, 0, 899, 900, 3, 409, 204, 0, 900, 104, 1, 0, 0, 0, 901, 902, 3, 409, 204, 0, 902, 903, 3, 427, 213, 0, 903, 904, 3, 407, 203, 0, 904, 106, 1, 0, 0, 0, 905, 906, 3, 409, 204, 0, 906, 907, 3, 427, 213, 0, 907, 908, 3, 413, 206, 0, 908, 909, 3, 417, 208, 0, 909, 910, 3, 427, 213, 0, 910, 911, 3, 409, 204, 0, 911, 108, 1, 0, 0, 0, 912, 913, 3, 409, 204, 0, 913, 914, 3, 443, 221, 0, 914, 915, 3, 409, 204, 0, 915, 916, 3, 427, 213, 0, 916, 917, 3, 439, 219, 0, 917, 918, 3, 437, 218, 0, 918, 110, 1, 0, 0, 0, 919, 920, 3, 409, 204, 0, 920, 921, 3, 447, 223, 0, 921, 922, 3, 417, 208, 0, 922, 923, 3, 437, 218, 0, 923, 924, 3, 439, 219, 0, 924, 925, 3, 437, 218, 0, 925, 112, 1, 0, 0, 0, 926, 927, 3, 409, 204, 0, 927, 928, 3, 447, 223, 0, 928, 929, 3, 431, 215, 0, 929, 930, 3, 423, 211, 0, 930, 931, 3, 401, 200, 0, 931, 932, 3, 417, 208, 0, 932, 933, 3, 427, 213, 0, 933, 114, 1, 0, 0, 0, 934, 935, 3, 409, 204, 0, 935, 936, 3, 447, 223, 0, 936, 937, 3, 431, 215, 0, 937, 938, 3, 435, 217, 0, 938, 939, 3, 409, 204, 0, 939, 940, 3, 437, 218, 0, 940, 941, 3, 437, 218, 0, 941, 942, 3, 417, 208, 0, 942, 943, 3, 429, 214, 0, 943, 944, 3, 427, 213, 0, 944, 116, 1, 0, 0, 0, 945, 946, 3, 409, 204, 0, 946, 947, 3, 447, 223, 0, 947, 948, 3, 439, 219, 0, 948, 949, 3, 435, 217, 0, 949, 950, 3, 401, 200, 0, 950, 951, 3, 405, 202, 0, 951, 952, 3, 439, 219, 0, 952, 118, 1, 0, 0, 0, 953, 954, 3, 411, 205, 0, 954, 955, 3, 409, 204, 0, 955, 956, 3, 439, 219, 0, 956, 957, 3, 405, 202, 0, 957, 958, 3, 415, 207, 0, 958, 959, 3, 409, 204, 0, 959, 960, 3, 437, 218, 0, 960, 120, 1, 0, 0, 0, 961, 962, 3, 411, 205, 0, 962, 963, 3, 417, 208, 0, 963, 964, 3, 427, 213, 0, 964, 965, 3, 401, 200, 0, 965, 966, 3, 423, 211, 0, 966, 122, 1, 0, 0, 0, 967, 968, 3, 411, 205, 0, 968, 969, 3, 417, 208, 0, 969, 970, 3, 435, 217, 0, 970, 971, 3, 437, 218, 0, 971, 972, 3, 439, 219, 0, 972, 124, 1, 0, 0, 0, 973, 974, 3, 411, 205, 0, 974, 975, 3, 423, 211, 0, 975, 976, 3, 441, 220, 0, 976, 977, 3, 437, 218, 0, 977, 978, 3, 415, 207, 0, 978, 126, 1, 0, 0, 0, 979, 980, 3, 411, 205, 0, 980, 981, 3, 429, 214, 0, 981, 982, 3, 423, 211, 0, 982, 983, 3, 423, 211, 0, 983, 984, 3, 429, 214, 0, 984, 985, 3, 445, 222, 0, 985, 986, 3, 417, 208, 0, 986, 987, 3, 427, 213, 0, 987, 988, 3, 413, 206, 0, 988, 128, 1, 0, 0, 0, 989, 990, 3, 411, 205, 0, 990, 991, 3, 429, 214, 0, 991, 992, 3, 435, 217, 0, 992, 130, 1, 0, 0, 0, 993, 994, 3, 411, 205, 0, 994, 995, 3, 429, 214, 0, 995, 996, 3, 435, 217, 0, 996, 997, 3, 425, 212, 0, 997, 998, 3, 401, 200, 0, 998, 999, 3, 439, 219, 0, 999, 132, 1, 0, 0, 0, 1000, 1001, 3, 411, 205, 0, 1001, 1002, 3, 435, 217, 0, 1002, 1003, 3, 409, 204, 0, 1003, 1004, 3, 409, 204, 0, 1004, 1005, 3, 451, 225, 0, 1005, 1006, 3, 409, 204, 0, 1006, 134, 1, 0, 0, 0, 1007, 1008, 3, 411, 205, 0, 1008, 1009, 3, 435, 217, 0, 1009, 1010, 3, 429, 214, 0, 1010, 1011, 3, 425, 212, 0, 1011, 136, 1, 0, 0, 0, 1012, 1013, 3, 411, 205, 0, 1013, 1014, 3, 441, 220, 0, 1014, 1015, 3, 423, 211, 0, 1015, 1016, 3, 423, 211, 0, 1016, 138, 1, 0, 0, 0, 1017, 1018, 3, 411, 205, 0, 1018, 1019, 3, 441, 220, 0, 1019, 1020, 3, 427, 213, 0, 1020, 1021, 3, 405, 202, 0, 1021, 1022, 3, 439, 219, 0, 1022, 1023, 3, 417, 208, 0, 1023, 1024, 3, 429, 214, 0, 1024, 1025, 3, 427, 213, 0, 1025, 140, 1, 0, 0, 0, 1026, 1027, 3, 413, 206, 0, 1027, 1028, 3, 423, 211, 0, 1028, 1029, 3, 429, 214, 0, 1029, 1030, 3, 403, 201, 0, 1030, 1031, 3, 401, 200, 0, 1031, 1032, 3, 423, 211, 0, 1032, 142, 1, 0, 0, 0, 1033, 1034, 3, 413, 206, 0, 1034, 1035, 3, 435, 217, 0, 1035, 1036, 3, 401, 200, 0, 1036, 1037, 3, 427, 213, 0, 1037, 1038, 3, 441, 220, 0, 1038, 1039, 3, 423, 211, 0, 1039, 1040, 3, 401, 200, 0, 1040, 1041, 3, 435, 217, 0, 1041, 1042, 3, 417, 208, 0, 1042, 1043, 3, 439, 219, 0, 1043, 1044, 3, 449, 224, 0, 1044, 144, 1, 0, 0, 0, 1045, 1046, 3, 413, 206, 0, 1046, 1047, 3, 435, 217, 0, 1047, 1048, 3, 429, 214, 0, 1048, 1049, 3, 441, 220, 0, 1049, 1050, 3, 431, 215, 0, 1050, 146, 1, 0, 0, 0, 1051, 1052, 3, 415, 207, 0, 1052, 1053, 3, 401, 200, 0, 1053, 1054, 3, 443, 221, 0, 1054, 1055, 3, 417, 208, 0, 1055, 1056, 3, 427, 213, 0, 1056, 1057, 3, 413, 206, 0, 1057, 148, 1, 0, 0, 0, 1058, 1059, 3, 415, 207, 0, 1059, 1060, 3, 417, 208, 0, 1060, 1061, 3, 409, 204, 0, 1061, 1062, 3, 435, 217, 0, 1062, 1063, 3, 401, 200, 0, 1063, 1064, 3, 435, 217, 0, 1064, 1065, 3, 405, 202, 0, 1065, 1066, 3, 415, 207, 0, 1066, 1067, 3, 417, 208, 0, 1067, 1068, 3, 405, 202, 0, 1068, 1069, 3, 401, 200, 0, 1069, 1070, 3, 423, 211, 0, 1070, 150, 1, 0, 0, 0, 1071, 1072, 3, 415, 207, 0, 1072, 1073, 3, 429, 214, 0, 1073, 1074, 3, 441, 220, 0, 1074, 1075, 3, 435, 217, 0, 1075, 152, 1, 0, 0, 0, 1076, 1077, 3, 417, 208, 0, 1077, 1078, 3, 407, 203, 0, 1078, 154, 1, 0, 0, 0, 1079, 1080, 3, 417, 208, 0, 1080, 1081, 3, 411, 205, 0, 1081, 156, 1, 0, 0, 0, 1082, 1083, 3, 417, 208, 0, 1083, 1084, 3, 423, 211, 0, 1084, 1085, 3, 417, 208, 0, 1085, 1086, 3, 421, 210, 0, 1086, 1087, 3, 409, 204, 0, 1087, 158, 1, 0, 0, 0, 1088, 1089, 3, 417, 208, 0, 1089, 1090, 3, 427, 213, 0, 1090, 160, 1, 0, 0, 0, 1091, 1092, 3, 417, 208, 0, 1092, 1093, 3, 427, 213, 0, 1093, 1094, 3, 407, 203, 0, 1094, 1095, 3, 409, 204, 0, 1095, 1096, 3, 447, 223, 0, 1096, 162, 1, 0, 0, 0, 1097, 1098, 3, 417, 208, 0, 1098, 1099, 3, 427, 213, 0, 1099, 1100, 3, 411, 205, 0, 1100, 1111, 1, 0, 0, 0, 1101, 1102, 3, 417, 208, 0, 1102, 1103, 3, 427, 213, 0, 1103, 1104, 3, 411, 205, 0, 1104, 1105, 3, 417, 208, 0, 1105, 1106, 3, 427, 213, 0, 1106, 1107, 3, 417, 208, 0, 1107, 1108, 3, 439, 219, 0, 1108, 1109, 3, 449, 224, 0, 1109, 1111, 1, 0, 0, 0, 1110, 1097, 1, 0, 0, 0, 1110, 1101, 1, 0, 0, 0, 1111, 164, 1, 0, 0, 0, 1112, 1113, 3, 417, 208, 0, 1113, 1114, 3, 427, 213, 0, 1114, 1115, 3, 419, 209, 0, 1115, 1116, 3, 409, 204, 0, 1116, 1117, 3, 405, 202, 0, 1117, 1118, 3, 439, 219, 0, 1118, 1119, 3, 417, 208, 0, 1119, 1120, 3, 443, 221, 0, 1120, 1121, 3, 409, 204, 0, 1121, 166, 1, 0, 0, 0, 1122, 1123, 3, 417, 208, 0, 1123, 1124, 3, 427, 213, 0, 1124, 1125, 3, 427, 213, 0, 1125, 1126, 3, 409, 204, 0, 1126, 1127, 3, 435, 217, 0, 1127, 168, 1, 0, 0, 0, 1128, 1129, 3, 417, 208, 0, 1129, 1130, 3, 427, 213, 0, 1130, 1131, 3, 437, 218, 0, 1131, 1132, 3, 409, 204, 0, 1132, 1133, 3, 435, 217, 0, 1133, 1134, 3, 439, 219, 0, 1134, 170, 1, 0, 0, 0, 1135, 1136, 3, 417, 208, 0, 1136, 1137, 3, 427, 213, 0, 1137, 1138, 3, 439, 219, 0, 1138, 1139, 3, 409, 204, 0, 1139, 1140, 3, 435, 217, 0, 1140, 1141, 3, 443, 221, 0, 1141, 1142, 3, 401, 200, 0, 1142, 1143, 3, 423, 211, 0, 1143, 172, 1, 0, 0, 0, 1144, 1145, 3, 417, 208, 0, 1145, 1146, 3, 427, 213, 0, 1146, 1147, 3, 439, 219, 0, 1147, 1148, 3, 429, 214, 0, 1148, 174, 1, 0, 0, 0, 1149, 1150, 3, 417, 208, 0, 1150, 1151, 3, 437, 218, 0, 1151, 176, 1, 0, 0, 0, 1152, 1153, 3, 417, 208, 0, 1153, 1154, 3, 437, 218, 0, 1154, 1155, 3, 535, 267, 0, 1155, 1156, 3, 429, 214, 0, 1156, 1157, 3, 403, 201, 0, 1157, 1158, 3, 419, 209, 0, 1158, 1159, 3, 409, 204, 0, 1159, 1160, 3, 405, 202, 0, 1160, 1161, 3, 439, 219, 0, 1161, 1162, 3, 535, 267, 0, 1162, 1163, 3, 417, 208, 0, 1163, 1164, 3, 407, 203, 0, 1164, 178, 1, 0, 0, 0, 1165, 1166, 3, 419, 209, 0, 1166, 1167, 3, 429, 214, 0, 1167, 1168, 3, 417, 208, 0, 1168, 1169, 3, 427, 213, 0, 1169, 180, 1, 0, 0, 0, 1170, 1171, 3, 421, 210, 0, 1171, 1172, 3, 409, 204, 0, 1172, 1173, 3, 449, 224, 0, 1173, 182, 1, 0, 0, 0, 1174, 1175, 3, 421, 210, 0, 1175, 1176, 3, 417, 208, 0, 1176, 1177, 3, 423, 211, 0, 1177, 1178, 3, 423, 211, 0, 1178, 184, 1, 0, 0, 0, 1179, 1180, 3, 423, 211, 0, 1180, 1181, 3, 401, 200, 0, 1181, 1182, 3, 437, 218, 0, 1182, 1183, 3, 439, 219, 0, 1183, 186, 1, 0, 0, 0, 1184, 1185, 3, 423, 211, 0, 1185, 1186, 3, 401, 200, 0, 1186, 1187, 3, 449, 224, 0, 1187, 1188, 3, 429, 214, 0, 1188, 1189, 3, 441, 220, 0, 1189, 1190, 3, 439, 219, 0, 1190, 188, 1, 0, 0, 0, 1191, 1192, 3, 423, 211, 0, 1192, 1193, 3, 409, 204, 0, 1193, 1194, 3, 401, 200, 0, 1194, 1195, 3, 407, 203, 0, 1195, 1196, 3, 417, 208, 0, 1196, 1197, 3, 427, 213, 0, 1197, 1198, 3, 413, 206, 0, 1198, 190, 1, 0, 0, 0, 1199, 1200, 3, 423, 211, 0, 1200, 1201, 3, 409, 204, 0, 1201, 1202, 3, 411, 205, 0, 1202, 1203, 3, 439, 219, 0, 1203, 192, 1, 0, 0, 0, 1204, 1205, 3, 423, 211, 0, 1205, 1206, 3, 417, 208, 0, 1206, 1207, 3, 411, 205, 0, 1207, 1208, 3, 409, 204, 0, 1208, 1209, 3, 439, 219, 0, 1209, 1210, 3, 417, 208, 0, 1210, 1211, 3, 425, 212, 0, 1211, 1212, 3, 409, 204, 0, 1212, 194, 1, 0, 0, 0, 1213, 1214, 3, 423, 211, 0, 1214, 1215, 3, 417, 208, 0, 1215, 1216, 3, 421, 210, 0, 1216, 1217, 3, 409, 204, 0, 1217, 196, 1, 0, 0, 0, 1218, 1219, 3, 423, 211, 0, 1219, 1220, 3, 417, 208, 0, 1220, 1221, 3, 425, 212, 0, 1221, 1222, 3, 417, 208, 0, 1222, 1223, 3, 439, 219, 0, 1223, 198, 1, 0, 0, 0, 1224, 1225, 3, 423, 211, 0, 1225, 1226, 3, 417, 208, 0, 1226, 1227, 3, 443, 221, 0, 1227, 1228, 3, 409, 204, 0, 1228, 200, 1, 0, 0, 0, 1229, 1230, 3, 423, 211, 0, 1230, 1231, 3, 429, 214, 0, 1231, 1232, 3, 405, 202, 0, 1232, 1233, 3, 401, 200, 0, 1233, 1234, 3, 423, 211, 0, 1234, 202, 1, 0, 0, 0, 1235, 1236, 3, 423, 211, 0, 1236, 1237, 3, 429, 214, 0, 1237, 1238, 3, 413, 206, 0, 1238, 1239, 3, 437, 218, 0, 1239, 204, 1, 0, 0, 0, 1240, 1241, 3, 425, 212, 0, 1241, 1242, 3, 401, 200, 0, 1242, 1243, 3, 439, 219, 0, 1243, 1244, 3, 409, 204, 0, 1244, 1245, 3, 435, 217, 0, 1245, 1246, 3, 417, 208, 0, 1246, 1247, 3, 401, 200, 0, 1247, 1248, 3, 423, 211, 0, 1248, 1249, 3, 417, 208, 0, 1249, 1250, 3, 451, 225, 0, 1250, 1251, 3, 409, 204, 0, 1251, 206, 1, 0, 0, 0, 1252, 1253, 3, 425, 212, 0, 1253, 1254, 3, 401, 200, 0, 1254, 1255, 3, 439, 219, 0, 1255, 1256, 3, 409, 204, 0, 1256, 1257, 3, 435, 217, 0, 1257, 1258, 3, 417, 208, 0, 1258, 1259, 3, 401, 200, 0, 1259, 1260, 3, 423, 211, 0, 1260, 1261, 3, 417, 208, 0, 1261, 1262, 3, 451, 225, 0, 1262, 1263, 3, 409, 204, 0, 1263, 1264, 3, 407, 203, 0, 1264, 208, 1, 0, 0, 0, 1265, 1266, 3, 425, 212, 0, 1266, 1267, 3, 401, 200, 0, 1267, 1268, 3, 447, 223, 0, 1268, 210, 1, 0, 0, 0, 1269, 1270, 3, 425, 212, 0, 1270, 1271, 3, 409, 204, 0, 1271, 1272, 3, 435, 217, 0, 1272, 1273, 3, 413, 206, 0, 1273, 1274, 3, 409, 204, 0, 1274, 1275, 3, 437, 218, 0, 1275, 212, 1, 0, 0, 0, 1276, 1277, 3, 425, 212, 0, 1277, 1278, 3, 417, 208, 0, 1278, 1279, 3, 427, 213, 0, 1279, 214, 1, 0, 0, 0, 1280, 1281, 3, 425, 212, 0, 1281, 1282, 3, 417, 208, 0, 1282, 1283, 3, 427, 213, 0, 1283, 1284, 3, 441, 220, 0, 1284, 1285, 3, 439, 219, 0, 1285, 1286, 3, 409, 204, 0, 1286, 216, 1, 0, 0, 0, 1287, 1288, 3, 425, 212, 0, 1288, 1289, 3, 429, 214, 0, 1289, 1290, 3, 407, 203, 0, 1290, 1291, 3, 417, 208, 0, 1291, 1292, 3, 411, 205, 0, 1292, 1293, 3, 449, 224, 0, 1293, 218, 1, 0, 0, 0, 1294, 1295, 3, 425, 212, 0, 1295, 1296, 3, 429, 214, 0, 1296, 1297, 3, 427, 213, 0, 1297, 1298, 3, 439, 219, 0, 1298, 1299, 3, 415, 207, 0, 1299, 220, 1, 0, 0, 0, 1300, 1301, 3, 425, 212, 0, 1301, 1302, 3, 429, 214, 0, 1302, 1303, 3, 443, 221, 0, 1303, 1304, 3, 409, 204, 0, 1304, 222, 1, 0, 0, 0, 1305, 1306, 3, 425, 212, 0, 1306, 1307, 3, 441, 220, 0, 1307, 1308, 3, 439, 219, 0, 1308, 1309, 3, 401, 200, 0, 1309, 1310, 3, 439, 219, 0, 1310, 1311, 3, 417, 208, 0, 1311, 1312, 3, 429, 214, 0, 1312, 1313, 3, 427, 213, 0, 1313, 224, 1, 0, 0, 0, 1314, 1315, 3, 427, 213, 0, 1315, 1316, 3, 401, 200, 0, 1316, 1317, 3, 427, 213, 0, 1317, 226, 1, 0, 0, 0, 1318, 1319, 3, 427, 213, 0, 1319, 1320, 3, 429, 214, 0, 1320, 228, 1, 0, 0, 0, 1321, 1322, 3, 427, 213, 0, 1322, 1323, 3, 429, 214, 0, 1323, 1324, 3, 439, 219, 0, 1324, 230, 1, 0, 0, 0, 1325, 1326, 3, 427, 213, 0, 1326, 1327, 3, 441, 220, 0, 1327, 1328, 3, 423, 211, 0, 1328, 1329, 3, 423, 211, 0, 1329, 232, 1, 0, 0, 0, 1330, 1331, 3, 427, 213, 0, 1331, 1332, 3, 441, 220, 0, 1332, 1333, 3, 423, 211, 0, 1333, 1334, 3, 423, 211, 0, 1334, 1335, 3, 437, 218, 0, 1335, 234, 1, 0, 0, 0, 1336, 1337, 3, 429, 214, 0, 1337, 1338, 3, 411, 205, 0, 1338, 1339, 3, 411, 205, 0, 1339, 1340, 3, 437, 218, 0, 1340, 1341, 3, 409, 204, 0, 1341, 1342, 3, 439, 219, 0, 1342, 236, 1, 0, 0, 0, 1343, 1344, 3, 429, 214, 0, 1344, 1345, 3, 427, 213, 0, 1345, 238, 1, 0, 0, 0, 1346, 1347, 3, 429, 214, 0, 1347, 1348, 3, 431, 215, 0, 1348, 1349, 3, 439, 219, 0, 1349, 1350, 3, 417, 208, 0, 1350, 1351, 3, 425, 212, 0, 1351, 1352, 3, 417, 208, 0, 1352, 1353, 3, 451, 225, 0, 1353, 1354, 3, 409, 204, 0, 1354, 240, 1, 0, 0, 0, 1355, 1356, 3, 429, 214, 0, 1356, 1357, 3, 435, 217, 0, 1357, 242, 1, 0, 0, 0, 1358, 1359, 3, 429, 214, 0, 1359, 1360, 3, 435, 217, 0, 1360, 1361, 3, 407, 203, 0, 1361, 1362, 3, 409, 204, 0, 1362, 1363, 3, 435, 217, 0, 1363, 244, 1, 0, 0, 0, 1364, 1365, 3, 429, 214, 0, 1365, 1366, 3, 441, 220, 0, 1366, 1367, 3, 439, 219, 0, 1367, 1368, 3, 409, 204, 0, 1368, 1369, 3, 435, 217, 0, 1369, 246, 1, 0, 0, 0, 1370, 1371, 3, 429, 214, 0, 1371, 1372, 3, 441, 220, 0, 1372, 1373, 3, 439, 219, 0, 1373, 1374, 3, 411, 205, 0, 1374, 1375, 3, 417, 208, 0, 1375, 1376, 3, 423, 211, 0, 1376, 1377, 3, 409, 204, 0, 1377, 248, 1, 0, 0, 0, 1378, 1379, 3, 429, 214, 0, 1379, 1380, 3, 443, 221, 0, 1380, 1381, 3, 409, 204, 0, 1381, 1382, 3, 435, 217, 0, 1382, 250, 1, 0, 0, 0, 1383, 1384, 3, 431, 215, 0, 1384, 1385, 3, 401, 200, 0, 1385, 1386, 3, 435, 217, 0, 1386, 1387, 3, 439, 219, 0, 1387, 1388, 3, 417, 208, 0, 1388, 1389, 3, 439, 219, 0, 1389, 1390, 3, 417, 208, 0, 1390, 1391, 3, 429, 214, 0, 1391, 1392, 3, 427, 213, 0, 1392, 252, 1, 0, 0, 0, 1393, 1394, 3, 431, 215, 0, 1394, 1395, 3, 429, 214, 0, 1395, 1396, 3, 431, 215, 0, 1396, 1397, 3, 441, 220, 0, 1397, 1398, 3, 423, 211, 0, 1398, 1399, 3, 401, 200, 0, 1399, 1400, 3, 439, 219, 0, 1400, 1401, 3, 409, 204, 0, 1401, 254, 1, 0, 0, 0, 1402, 1403, 3, 431, 215, 0, 1403, 1404, 3, 435, 217, 0, 1404, 1405, 3, 409, 204, 0, 1405, 1406, 3, 405, 202, 0, 1406, 1407, 3, 409, 204, 0, 1407, 1408, 3, 407, 203, 0, 1408, 1409, 3, 417, 208, 0, 1409, 1410, 3, 427, 213, 0, 1410, 1411, 3, 413, 206, 0, 1411, 256, 1, 0, 0, 0, 1412, 1413, 3, 431, 215, 0, 1413, 1414, 3, 435, 217, 0, 1414, 1415, 3, 409, 204, 0, 1415, 1416, 3, 445, 222, 0, 1416, 1417, 3, 415, 207, 0, 1417, 1418, 3, 409, 204, 0, 1418, 1419, 3, 435, 217, 0, 1419, 1420, 3, 409, 204, 0, 1420, 258, 1, 0, 0, 0, 1421, 1422, 3, 431, 215, 0, 1422, 1423, 3, 435, 217, 0, 1423, 1424, 3, 417, 208, 0, 1424, 1425, 3, 425, 212, 0, 1425, 1426, 3, 401, 200, 0, 1426, 1427, 3, 435, 217, 0, 1427, 1428, 3, 449, 224, 0, 1428, 260, 1, 0, 0, 0, 1429, 1430, 3, 431, 215, 0, 1430, 1431, 3, 435, 217, 0, 1431, 1432, 3, 429, 214, 0, 1432, 1433, 3, 419, 209, 0, 1433, 1434, 3, 409, 204, 0, 1434, 1435, 3, 405, 202, 0, 1435, 1436, 3, 439, 219, 0, 1436, 1437, 3, 417, 208, 0, 1437, 1438, 3, 429, 214, 0, 1438, 1439, 3, 427, 213, 0, 1439, 262, 1, 0, 0, 0, 1440, 1441, 3, 433, 216, 0, 1441, 1442, 3, 441, 220, 0, 1442, 1443, 3, 401, 200, 0, 1443, 1444, 3, 435, 217, 0, 1444, 1445, 3, 439, 219, 0, 1445, 1446, 3, 409, 204, 0, 1446, 1447, 3, 435, 217, 0, 1447, 264, 1, 0, 0, 0, 1448, 1449, 3, 435, 217, 0, 1449, 1450, 3, 401, 200, 0, 1450, 1451, 3, 427, 213, 0, 1451, 1452, 3, 413, 206, 0, 1452, 1453, 3, 409, 204, 0, 1453, 266, 1, 0, 0, 0, 1454, 1455, 3, 435, 217, 0, 1455, 1456, 3, 409, 204, 0, 1456, 1457, 3, 423, 211, 0, 1457, 1458, 3, 429, 214, 0, 1458, 1459, 3, 401, 200, 0, 1459, 1460, 3, 407, 203, 0, 1460, 268, 1, 0, 0, 0, 1461, 1462, 3, 435, 217, 0, 1462, 1463, 3, 409, 204, 0, 1463, 1464, 3, 425, 212, 0, 1464, 1465, 3, 429, 214, 0, 1465, 1466, 3, 443, 221, 0, 1466, 1467, 3, 409, 204, 0, 1467, 270, 1, 0, 0, 0, 1468, 1469, 3, 435, 217, 0, 1469, 1470, 3, 409, 204, 0, 1470, 1471, 3, 427, 213, 0, 1471, 1472, 3, 401, 200, 0, 1472, 1473, 3, 425, 212, 0, 1473, 1474, 3, 409, 204, 0, 1474, 272, 1, 0, 0, 0, 1475, 1476, 3, 435, 217, 0, 1476, 1477, 3, 409, 204, 0, 1477, 1478, 3, 431, 215, 0, 1478, 1479, 3, 423, 211, 0, 1479, 1480, 3, 401, 200, 0, 1480, 1481, 3, 405, 202, 0, 1481, 1482, 3, 409, 204, 0, 1482, 274, 1, 0, 0, 0, 1483, 1484, 3, 435, 217, 0, 1484, 1485, 3, 409, 204, 0, 1485, 1486, 3, 431, 215, 0, 1486, 1487, 3, 423, 211, 0, 1487, 1488, 3, 417, 208, 0, 1488, 1489, 3, 405, 202, 0, 1489, 1490, 3, 401, 200, 0, 1490, 276, 1, 0, 0, 0, 1491, 1492, 3, 435, 217, 0, 1492, 1493, 3, 409, 204, 0, 1493, 1494, 3, 431, 215, 0, 1494, 1495, 3, 423, 211, 0, 1495, 1496, 3, 417, 208, 0, 1496, 1497, 3, 405, 202, 0, 1497, 1498, 3, 401, 200, 0, 1498, 1499, 3, 439, 219, 0, 1499, 1500, 3, 409, 204, 0, 1500, 1501, 3, 407, 203, 0, 1501, 278, 1, 0, 0, 0, 1502, 1503, 3, 435, 217, 0, 1503, 1504, 3, 417, 208, 0, 1504, 1505, 3, 413, 206, 0, 1505, 1506, 3, 415, 207, 0, 1506, 1507, 3, 439, 219, 0, 1507, 280, 1, 0, 0, 0, 1508, 1509, 3, 435, 217, 0, 1509, 1510, 3, 429, 214, 0, 1510, 1511, 3, 423, 211, 0, 1511, 1512, 3, 423, 211, 0, 1512, 1513, 3, 441, 220, 0, 1513, 1514, 3, 431, 215, 0, 1514, 282, 1, 0, 0, 0, 1515, 1516, 3, 435, 217, 0, 1516, 1517, 3, 429, 214, 0, 1517, 1518, 3, 445, 222, 0, 1518, 284, 1, 0, 0, 0, 1519, 1520, 3, 435, 217, 0, 1520, 1521, 3, 429, 214, 0, 1521, 1522, 3, 445, 222, 0, 1522, 1523, 3, 437, 218, 0, 1523, 286, 1, 0, 0, 0, 1524, 1525, 3, 437, 218, 0, 1525, 1526, 3, 401, 200, 0, 1526, 1527, 3, 425, 212, 0, 1527, 1528, 3, 431, 215, 0, 1528, 1529, 3, 423, 211, 0, 1529, 1530, 3, 409, 204, 0, 1530, 288, 1, 0, 0, 0, 1531, 1532, 3, 437, 218, 0, 1532, 1533, 3, 409, 204, 0, 1533, 1534, 3, 405, 202, 0, 1534, 1535, 3, 429, 214, 0, 1535, 1536, 3, 427, 213, 0, 1536, 1537, 3, 407, 203, 0, 1537, 290, 1, 0, 0, 0, 1538, 1539, 3, 437, 218, 0, 1539, 1540, 3, 409, 204, 0, 1540, 1541, 3, 423, 211, 0, 1541, 1542, 3, 409, 204, 0, 1542, 1543, 3, 405, 202, 0, 1543, 1544, 3, 439, 219, 0, 1544, 292, 1, 0, 0, 0, 1545, 1546, 3, 437, 218, 0, 1546, 1547, 3, 409, 204, 0, 1547, 1548, 3, 425, 212, 0, 1548, 1549, 3, 417, 208, 0, 1549, 294, 1, 0, 0, 0, 1550, 1551, 3, 437, 218, 0, 1551, 1552, 3, 409, 204, 0, 1552, 1553, 3, 427, 213, 0, 1553, 1554, 3, 407, 203, 0, 1554, 1555, 3, 437, 218, 0, 1555, 296, 1, 0, 0, 0, 1556, 1557, 3, 437, 218, 0, 1557, 1558, 3, 409, 204, 0, 1558, 1559, 3, 439, 219, 0, 1559, 298, 1, 0, 0, 0, 1560, 1561, 3, 437, 218, 0, 1561, 1562, 3, 409, 204, 0, 1562, 1563, 3, 439, 219, 0, 1563, 1564, 3, 439, 219, 0, 1564, 1565, 3, 417, 208, 0, 1565, 1566, 3, 427, 213, 0, 1566, 1567, 3, 413, 206, 0, 1567, 1568, 3, 437, 218, 0, 1568, 300, 1, 0, 0, 0, 1569, 1570, 3, 437, 218, 0, 1570, 1571, 3, 415, 207, 0, 1571, 1572, 3, 429, 214, 0, 1572, 1573, 3, 445, 222, 0, 1573, 302, 1, 0, 0, 0, 1574, 1575, 3, 437, 218, 0, 1575, 1576, 3, 429, 214, 0, 1576, 1577, 3, 441, 220, 0, 1577, 1578, 3, 435, 217, 0, 1578, 1579, 3, 405, 202, 0, 1579, 1580, 3, 409, 204, 0, 1580, 304, 1, 0, 0, 0, 1581, 1582, 3, 437, 218, 0, 1582, 1583, 3, 439, 219, 0, 1583, 1584, 3, 401, 200, 0, 1584, 1585, 3, 435, 217, 0, 1585, 1586, 3, 439, 219, 0, 1586, 306, 1, 0, 0, 0, 1587, 1588, 3, 437, 218, 0, 1588, 1589, 3, 439, 219, 0, 1589, 1590, 3, 429, 214, 0, 1590, 1591, 3, 431, 215, 0, 1591, 308, 1, 0, 0, 0, 1592, 1593, 3, 437, 218, 0, 1593, 1594, 3, 441, 220, 0, 1594, 1595, 3, 403, 201, 0, 1595, 1596, 3, 437, 218, 0, 1596, 1597, 3, 439, 219, 0, 1597, 1598, 3, 435, 217, 0, 1598, 1599, 3, 417, 208, 0, 1599, 1600, 3, 427, 213, 0, 1600, 1601, 3, 413, 206, 0, 1601, 310, 1, 0, 0, 0, 1602, 1603, 3, 437, 218, 0, 1603, 1604, 3, 449, 224, 0, 1604, 1605, 3, 427, 213, 0, 1605, 1606, 3, 405, 202, 0, 1606, 312, 1, 0, 0, 0, 1607, 1608, 3, 437, 218, 0, 1608, 1609, 3, 449, 224, 0, 1609, 1610, 3, 427, 213, 0, 1610, 1611, 3, 439, 219, 0, 1611, 1612, 3, 401, 200, 0, 1612, 1613, 3, 447, 223, 0, 1613, 314, 1, 0, 0, 0, 1614, 1615, 3, 437, 218, 0, 1615, 1616, 3, 449, 224, 0, 1616, 1617, 3, 437, 218, 0, 1617, 1618, 3, 439, 219, 0, 1618, 1619, 3, 409, 204, 0, 1619, 1620, 3, 425, 212, 0, 1620, 316, 1, 0, 0, 0, 1621, 1622, 3, 439, 219, 0, 1622, 1623, 3, 401, 200, 0, 1623, 1624, 3, 403, 201, 0, 1624, 1625, 3, 423, 211, 0, 1625, 1626, 3, 409, 204, 0, 1626, 318, 1, 0, 0, 0, 1627, 1628, 3, 439, 219, 0, 1628, 1629, 3, 401, 200, 0, 1629, 1630, 3, 403, 201, 0, 1630, 1631, 3, 423, 211, 0, 1631, 1632, 3, 409, 204, 0, 1632, 1633, 3, 437, 218, 0, 1633, 320, 1, 0, 0, 0, 1634, 1635, 3, 439, 219, 0, 1635, 1636, 3, 409, 204, 0, 1636, 1637, 3, 425, 212, 0, 1637, 1638, 3, 431, 215, 0, 1638, 1639, 3, 429, 214, 0, 1639, 1640, 3, 435, 217, 0, 1640, 1641, 3, 401, 200, 0, 1641, 1642, 3, 435, 217, 0, 1642, 1643, 3, 449, 224, 0, 1643, 322, 1, 0, 0, 0, 1644, 1645, 3, 439, 219, 0, 1645, 1646, 3, 409, 204, 0, 1646, 1647, 3, 437, 218, 0, 1647, 1648, 3, 439, 219, 0, 1648, 324, 1, 0, 0, 0, 1649, 1650, 3, 439, 219, 0, 1650, 1651, 3, 415, 207, 0, 1651, 1652, 3, 409, 204, 0, 1652, 1653, 3, 427, 213, 0, 1653, 326, 1, 0, 0, 0, 1654, 1655, 3, 439, 219, 0, 1655, 1656, 3, 417, 208, 0, 1656, 1657, 3, 409, 204, 0, 1657, 1658, 3, 437, 218, 0, 1658, 328, 1, 0, 0, 0, 1659, 1660, 3, 439, 219, 0, 1660, 1661, 3, 417, 208, 0, 1661, 1662, 3, 425, 212, 0, 1662, 1663, 3, 409, 204, 0, 1663, 1664, 3, 429, 214, 0, 1664, 1665, 3, 441, 220, 0, 1665, 1666, 3, 439, 219, 0, 1666, 330, 1, 0, 0, 0, 1667, 1668, 3, 439, 219, 0, 1668, 1669, 3, 417, 208, 0, 1669, 1670, 3, 425, 212, 0, 1670, 1671, 3, 409, 204, 0, 1671, 1672, 3, 437, 218, 0, 1672, 1673, 3, 439, 219, 0, 1673, 1674, 3, 401, 200, 0, 1674, 1675, 3, 425, 212, 0, 1675, 1676, 3, 431, 215, 0, 1676, 332, 1, 0, 0, 0, 1677, 1678, 3, 439, 219, 0, 1678, 1679, 3, 429, 214, 0, 1679, 334, 1, 0, 0, 0, 1680, 1681, 3, 439, 219, 0, 1681, 1682, 3, 429, 214, 0, 1682, 1683, 3, 431, 215, 0, 1683, 336, 1, 0, 0, 0, 1684, 1685, 3, 439, 219, 0, 1685, 1686, 3, 429, 214, 0, 1686, 1687, 3, 439, 219, 0, 1687, 1688, 3, 401, 200, 0, 1688, 1689, 3, 423, 211, 0, 1689, 1690, 3, 437, 218, 0, 1690, 338, 1, 0, 0, 0, 1691, 1692, 3, 439, 219, 0, 1692, 1693, 3, 435, 217, 0, 1693, 1694, 3, 401, 200, 0, 1694, 1695, 3, 417, 208, 0, 1695, 1696, 3, 423, 211, 0, 1696, 1697, 3, 417, 208, 0, 1697, 1698, 3, 427, 213, 0, 1698, 1699, 3, 413, 206, 0, 1699, 340, 1, 0, 0, 0, 1700, 1701, 3, 439, 219, 0, 1701, 1702, 3, 435, 217, 0, 1702, 1703, 3, 417, 208, 0, 1703, 1704, 3, 425, 212, 0, 1704, 342, 1, 0, 0, 0, 1705, 1706, 3, 439, 219, 0, 1706, 1707, 3, 435, 217, 0, 1707, 1708, 3, 441, 220, 0, 1708, 1709, 3, 427, 213, 0, 1709, 1710, 3, 405, 202, 0, 1710, 1711, 3, 401, 200, 0, 1711, 1712, 3, 439, 219, 0, 1712, 1713, 3, 409, 204, 0, 1713, 344, 1, 0, 0, 0, 1714, 1715, 3, 439, 219, 0, 1715, 1716, 3, 439, 219, 0, 1716, 1717, 3, 423, 211, 0, 1717, 346, 1, 0, 0, 0, 1718, 1719, 3, 439, 219, 0, 1719, 1720, 3, 449, 224, 0, 1720, 1721, 3, 431, 215, 0, 1721, 1722, 3, 409, 204, 0, 1722, 348, 1, 0, 0, 0, 1723, 1724, 3, 441, 220, 0, 1724, 1725, 3, 427, 213, 0, 1725, 1726, 3, 403, 201, 0, 1726, 1727, 3, 429, 214, 0, 1727, 1728, 3, 441, 220, 0, 1728, 1729, 3, 427, 213, 0, 1729, 1730, 3, 407, 203, 0, 1730, 1731, 3, 409, 204, 0, 1731, 1732, 3, 407, 203, 0, 1732, 350, 1, 0, 0, 0, 1733, 1734, 3, 441, 220, 0, 1734, 1735, 3, 427, 213, 0, 1735, 1736, 3, 417, 208, 0, 1736, 1737, 3, 429, 214, 0, 1737, 1738, 3, 427, 213, 0, 1738, 352, 1, 0, 0, 0, 1739, 1740, 3, 441, 220, 0, 1740, 1741, 3, 431, 215, 0, 1741, 1742, 3, 407, 203, 0, 1742, 1743, 3, 401, 200, 0, 1743, 1744, 3, 439, 219, 0, 1744, 1745, 3, 409, 204, 0, 1745, 354, 1, 0, 0, 0, 1746, 1747, 3, 441, 220, 0, 1747, 1748, 3, 437, 218, 0, 1748, 1749, 3, 409, 204, 0, 1749, 356, 1, 0, 0, 0, 1750, 1751, 3, 441, 220, 0, 1751, 1752, 3, 437, 218, 0, 1752, 1753, 3, 417, 208, 0, 1753, 1754, 3, 427, 213, 0, 1754, 1755, 3, 413, 206, 0, 1755, 358, 1, 0, 0, 0, 1756, 1757, 3, 441, 220, 0, 1757, 1758, 3, 441, 220, 0, 1758, 1759, 3, 417, 208, 0, 1759, 1760, 3, 407, 203, 0, 1760, 360, 1, 0, 0, 0, 1761, 1762, 3, 443, 221, 0, 1762, 1763, 3, 401, 200, 0, 1763, 1764, 3, 423, 211, 0, 1764, 1765, 3, 441, 220, 0, 1765, 1766, 3, 409, 204, 0, 1766, 1767, 3, 437, 218, 0, 1767, 362, 1, 0, 0, 0, 1768, 1769, 3, 443, 221, 0, 1769, 1770, 3, 417, 208, 0, 1770, 1771, 3, 409, 204, 0, 1771, 1772, 3, 445, 222, 0, 1772, 364, 1, 0, 0, 0, 1773, 1774, 3, 443, 221, 0, 1774, 1775, 3, 429, 214, 0, 1775, 1776, 3, 423, 211, 0, 1776, 1777, 3, 441, 220, 0, 1777, 1778, 3, 425, 212, 0, 1778, 1779, 3, 409, 204, 0, 1779, 366, 1, 0, 0, 0, 1780, 1781, 3, 445, 222, 0, 1781, 1782, 3, 401, 200, 0, 1782, 1783, 3, 439, 219, 0, 1783, 1784, 3, 405, 202, 0, 1784, 1785, 3, 415, 207, 0, 1785, 368, 1, 0, 0, 0, 1786, 1787, 3, 445, 222, 0, 1787, 1788, 3, 409, 204, 0, 1788, 1789, 3, 409, 204, 0, 1789, 1790, 3, 421, 210, 0, 1790, 370, 1, 0, 0, 0, 1791, 1792, 3, 445, 222, 0, 1792, 1793, 3, 415, 207, 0, 1793, 1794, 3, 409, 204, 0, 1794, 1795, 3, 427, 213, 0, 1795, 372, 1, 0, 0, 0, 1796, 1797, 3, 445, 222, 0, 1797, 1798, 3, 415, 207, 0, 1798, 1799, 3, 409, 204, 0, 1799, 1800, 3, 435, 217, 0, 1800, 1801, 3, 409, 204, 0, 1801, 374, 1, 0, 0, 0, 1802, 1803, 3, 445, 222, 0, 1803, 1804, 3, 417, 208, 0, 1804, 1805, 3, 427, 213, 0, 1805, 1806, 3, 407, 203, 0, 1806, 1807, 3, 429, 214, 0, 1807, 1808, 3, 445, 222, 0, 1808, 376, 1, 0, 0, 0, 1809, 1810, 3, 445, 222, 0, 1810, 1811, 3, 417, 208, 0, 1811, 1812, 3, 439, 219, 0, 1812, 1813, 3, 415, 207, 0, 1813, 378, 1, 0, 0, 0, 1814, 1815, 3, 449, 224, 0, 1815, 1816, 3, 409, 204, 0, 1816, 1817, 3, 401, 200, 0, 1817, 1818, 3, 435, 217, 0, 1818, 1825, 1, 0, 0, 0, 1819, 1820, 3, 449, 224, 0, 1820, 1821, 3, 449, 224, 0, 1821, 1822, 3, 449, 224, 0, 1822, 1823, 3, 449, 224, 0, 1823, 1825, 1, 0, 0, 0, 1824, 1814, 1, 0, 0, 0, 1824, 1819, 1, 0, 0, 0, 1825, 380, 1, 0, 0, 0, 1826, 1827, 5, 102, 0, 0, 1827, 1828, 5, 97, 0, 0, 1828, 1829, 5, 108, 0, 0, 1829, 1830, 5, 115, 0, 0, 1830, 1831, 5, 101, 0, 0, 1831, 382, 1, 0, 0, 0, 1832, 1833, 5, 116, 0, 0, 1833, 1834, 5, 114, 0, 0, 1834, 1835, 5, 117, 0, 0, 1835, 1836, 5, 101, 0, 0, 1836, 384, 1, 0, 0, 0, 1837, 1838, 3, 467, 233, 0, 1838, 1839, 3, 403, 201, 0, 1839, 1868, 1, 0, 0, 0, 1840, 1841, 3, 467, 233, 0, 1841, 1842, 3, 411, 205, 0, 1842, 1868, 1, 0, 0, 0, 1843, 1844, 3, 467, 233, 0, 1844, 1845, 3, 435, 217, 0, 1845, 1868, 1, 0, 0, 0, 1846, 1847, 3, 467, 233, 0, 1847, 1848, 3, 427, 213, 0, 1848, 1868, 1, 0, 0, 0, 1849, 1850, 3, 467, 233, 0, 1850, 1851, 3, 439, 219, 0, 1851, 1868, 1, 0, 0, 0, 1852, 1853, 3, 467, 233, 0, 1853, 1854, 5, 48, 0, 0, 1854, 1868, 1, 0, 0, 0, 1855, 1856, 3, 467, 233, 0, 1856, 1857, 3, 401, 200, 0, 1857, 1868, 1, 0, 0, 0, 1858, 1859, 3, 467, 233, 0, 1859, 1860, 3, 443, 221, 0, 1860, 1868, 1, 0, 0, 0, 1861, 1862, 3, 467, 233, 0, 1862, 1863, 3, 467, 233, 0, 1863, 1868, 1, 0, 0, 0, 1864, 1865, 3, 467, 233, 0, 1865, 1866, 3, 519, 259, 0, 1866, 1868, 1, 0, 0, 0, 1867, 1837, 1, 0, 0, 0, 1867, 1840, 1, 0, 0, 0, 1867, 1843, 1, 0, 0, 0, 1867, 1846, 1, 0, 0, 0, 1867, 1849, 1, 0, 0, 0, 1867, 1852, 1, 0, 0, 0, 1867, 1855, 1, 0, 0, 0, 1867, 1858, 1, 0, 0, 0, 1867, 1861, 1, 0, 0, 0, 1867, 1864, 1, 0, 0, 0, 1868, 386, 1, 0, 0, 0, 1869, 1873, 3, 453, 226, 0, 1870, 1873, 3, 535, 267, 0, 1871, 1873, 3, 477, 238, 0, 1872, 1869, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1872, 1871, 1, 0, 0, 0, 1873, 1880, 1, 0, 0, 0, 1874, 1879, 3, 453, 226, 0, 1875, 1879, 3, 535, 267, 0, 1876, 1879, 3, 457, 228, 0, 1877, 1879, 3, 477, 238, 0, 1878, 1874, 1, 0, 0, 0, 1878, 1875, 1, 0, 0, 0, 1878, 1876, 1, 0, 0, 0, 1878, 1877, 1, 0, 0, 0, 1879, 1882, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 1910, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1883, 1891, 3, 465, 232, 0, 1884, 1890, 8, 0, 0, 0, 1885, 1890, 3, 385, 192, 0, 1886, 1887, 3, 465, 232, 0, 1887, 1888, 3, 465, 232, 0, 1888, 1890, 1, 0, 0, 0, 1889, 1884, 1, 0, 0, 0, 1889, 1885, 1, 0, 0, 0, 1889, 1886, 1, 0, 0, 0, 1890, 1893, 1, 0, 0, 0, 1891, 1889, 1, 0, 0, 0, 1891, 1892, 1, 0, 0, 0, 1892, 1894, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1894, 1895, 3, 465, 232, 0, 1895, 1910, 1, 0, 0, 0, 1896, 1904, 3, 517, 258, 0, 1897, 1903, 8, 1, 0, 0, 1898, 1903, 3, 385, 192, 0, 1899, 1900, 3, 517, 258, 0, 1900, 1901, 3, 517, 258, 0, 1901, 1903, 1, 0, 0, 0, 1902, 1897, 1, 0, 0, 0, 1902, 1898, 1, 0, 0, 0, 1902, 1899, 1, 0, 0, 0, 1903, 1906, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 1907, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1908, 3, 517, 258, 0, 1908, 1910, 1, 0, 0, 0, 1909, 1872, 1, 0, 0, 0, 1909, 1883, 1, 0, 0, 0, 1909, 1896, 1, 0, 0, 0, 1910, 388, 1, 0, 0, 0, 1911, 1912, 3, 395, 197, 0, 1912, 1916, 3, 479, 239, 0, 1913, 1915, 3, 459, 229, 0, 1914, 1913, 1, 0, 0, 0, 1915, 1918, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1921, 1, 0, 0, 0, 1918, 1916, 1, 0, 0, 0, 1919, 1922, 3, 431, 215, 0, 1920, 1922, 3, 409, 204, 0, 1921, 1919, 1, 0, 0, 0, 1921, 1920, 1, 0, 0, 0, 1922, 1925, 1, 0, 0, 0, 1923, 1926, 3, 513, 256, 0, 1924, 1926, 3, 475, 237, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1924, 1, 0, 0, 0, 1925, 1926, 1, 0, 0, 0, 1926, 1928, 1, 0, 0, 0, 1927, 1929, 3, 457, 228, 0, 1928, 1927, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1928, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1988, 1, 0, 0, 0, 1932, 1935, 3, 395, 197, 0, 1933, 1936, 3, 431, 215, 0, 1934, 1936, 3, 409, 204, 0, 1935, 1933, 1, 0, 0, 0, 1935, 1934, 1, 0, 0, 0, 1936, 1939, 1, 0, 0, 0, 1937, 1940, 3, 513, 256, 0, 1938, 1940, 3, 475, 237, 0, 1939, 1937, 1, 0, 0, 0, 1939, 1938, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1942, 1, 0, 0, 0, 1941, 1943, 3, 457, 228, 0, 1942, 1941, 1, 0, 0, 0, 1943, 1944, 1, 0, 0, 0, 1944, 1942, 1, 0, 0, 0, 1944, 1945, 1, 0, 0, 0, 1945, 1988, 1, 0, 0, 0, 1946, 1947, 3, 393, 196, 0, 1947, 1951, 3, 479, 239, 0, 1948, 1950, 3, 457, 228, 0, 1949, 1948, 1, 0, 0, 0, 1950, 1953, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1954, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1954, 1957, 3, 409, 204, 0, 1955, 1958, 3, 513, 256, 0, 1956, 1958, 3, 475, 237, 0, 1957, 1955, 1, 0, 0, 0, 1957, 1956, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1960, 1, 0, 0, 0, 1959, 1961, 3, 457, 228, 0, 1960, 1959, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1960, 1, 0, 0, 0, 1962, 1963, 1, 0, 0, 0, 1963, 1988, 1, 0, 0, 0, 1964, 1965, 3, 479, 239, 0, 1965, 1966, 3, 393, 196, 0, 1966, 1969, 3, 409, 204, 0, 1967, 1970, 3, 513, 256, 0, 1968, 1970, 3, 475, 237, 0, 1969, 1967, 1, 0, 0, 0, 1969, 1968, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1972, 1, 0, 0, 0, 1971, 1973, 3, 457, 228, 0, 1972, 1971, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1972, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1988, 1, 0, 0, 0, 1976, 1977, 3, 393, 196, 0, 1977, 1980, 3, 409, 204, 0, 1978, 1981, 3, 513, 256, 0, 1979, 1981, 3, 475, 237, 0, 1980, 1978, 1, 0, 0, 0, 1980, 1979, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 1983, 1, 0, 0, 0, 1982, 1984, 3, 457, 228, 0, 1983, 1982, 1, 0, 0, 0, 1984, 1985, 1, 0, 0, 0, 1985, 1983, 1, 0, 0, 0, 1985, 1986, 1, 0, 0, 0, 1986, 1988, 1, 0, 0, 0, 1987, 1911, 1, 0, 0, 0, 1987, 1932, 1, 0, 0, 0, 1987, 1946, 1, 0, 0, 0, 1987, 1964, 1, 0, 0, 0, 1987, 1976, 1, 0, 0, 0, 1988, 390, 1, 0, 0, 0, 1989, 1991, 5, 48, 0, 0, 1990, 1992, 3, 455, 227, 0, 1991, 1990, 1, 0, 0, 0, 1992, 1993, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1993, 1994, 1, 0, 0, 0, 1994, 392, 1, 0, 0, 0, 1995, 1997, 3, 457, 228, 0, 1996, 1995, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1996, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 394, 1, 0, 0, 0, 2000, 2001, 5, 48, 0, 0, 2001, 2003, 3, 447, 223, 0, 2002, 2004, 3, 459, 229, 0, 2003, 2002, 1, 0, 0, 0, 2004, 2005, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 396, 1, 0, 0, 0, 2007, 2015, 3, 519, 259, 0, 2008, 2014, 8, 2, 0, 0, 2009, 2014, 3, 385, 192, 0, 2010, 2011, 3, 519, 259, 0, 2011, 2012, 3, 519, 259, 0, 2012, 2014, 1, 0, 0, 0, 2013, 2008, 1, 0, 0, 0, 2013, 2009, 1, 0, 0, 0, 2013, 2010, 1, 0, 0, 0, 2014, 2017, 1, 0, 0, 0, 2015, 2013, 1, 0, 0, 0, 2015, 2016, 1, 0, 0, 0, 2016, 2018, 1, 0, 0, 0, 2017, 2015, 1, 0, 0, 0, 2018, 2019, 3, 519, 259, 0, 2019, 398, 1, 0, 0, 0, 2020, 2028, 3, 495, 247, 0, 2021, 2027, 8, 3, 0, 0, 2022, 2027, 3, 385, 192, 0, 2023, 2024, 3, 495, 247, 0, 2024, 2025, 3, 495, 247, 0, 2025, 2027, 1, 0, 0, 0, 2026, 2021, 1, 0, 0, 0, 2026, 2022, 1, 0, 0, 0, 2026, 2023, 1, 0, 0, 0, 2027, 2030, 1, 0, 0, 0, 2028, 2026, 1, 0, 0, 0, 2028, 2029, 1, 0, 0, 0, 2029, 2031, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2031, 2032, 3, 525, 262, 0, 2032, 400, 1, 0, 0, 0, 2033, 2034, 7, 4, 0, 0, 2034, 402, 1, 0, 0, 0, 2035, 2036, 7, 5, 0, 0, 2036, 404, 1, 0, 0, 0, 2037, 2038, 7, 6, 0, 0, 2038, 406, 1, 0, 0, 0, 2039, 2040, 7, 7, 0, 0, 2040, 408, 1, 0, 0, 0, 2041, 2042, 7, 8, 0, 0, 2042, 410, 1, 0, 0, 0, 2043, 2044, 7, 9, 0, 0, 2044, 412, 1, 0, 0, 0, 2045, 2046, 7, 10, 0, 0, 2046, 414, 1, 0, 0, 0, 2047, 2048, 7, 11, 0, 0, 2048, 416, 1, 0, 0, 0, 2049, 2050, 7, 12, 0, 0, 2050, 418, 1, 0, 0, 0, 2051, 2052, 7, 13, 0, 0, 2052, 420, 1, 0, 0, 0, 2053, 2054, 7, 14, 0, 0, 2054, 422, 1, 0, 0, 0, 2055, 2056, 7, 15, 0, 0, 2056, 424, 1, 0, 0, 0, 2057, 2058, 7, 16, 0, 0, 2058, 426, 1, 0, 0, 0, 2059, 2060, 7, 17, 0, 0, 2060, 428, 1, 0, 0, 0, 2061, 2062, 7, 18, 0, 0, 2062, 430, 1, 0, 0, 0, 2063, 2064, 7, 19, 0, 0, 2064, 432, 1, 0, 0, 0, 2065, 2066, 7, 20, 0, 0, 2066, 434, 1, 0, 0, 0, 2067, 2068, 7, 21, 0, 0, 2068, 436, 1, 0, 0, 0, 2069, 2070, 7, 22, 0, 0, 2070, 438, 1, 0, 0, 0, 2071, 2072, 7, 23, 0, 0, 2072, 440, 1, 0, 0, 0, 2073, 2074, 7, 24, 0, 0, 2074, 442, 1, 0, 0, 0, 2075, 2076, 7, 25, 0, 0, 2076, 444, 1, 0, 0, 0, 2077, 2078, 7, 26, 0, 0, 2078, 446, 1, 0, 0, 0, 2079, 2080, 7, 27, 0, 0, 2080, 448, 1, 0, 0, 0, 2081, 2082, 7, 28, 0, 0, 2082, 450, 1, 0, 0, 0, 2083, 2084, 7, 29, 0, 0, 2084, 452, 1, 0, 0, 0, 2085, 2086, 7, 30, 0, 0, 2086, 454, 1, 0, 0, 0, 2087, 2088, 7, 31, 0, 0, 2088, 456, 1, 0, 0, 0, 2089, 2090, 7, 32, 0, 0, 2090, 458, 1, 0, 0, 0, 2091, 2092, 7, 33, 0, 0, 2092, 460, 1, 0, 0, 0, 2093, 2094, 5, 45, 0, 0, 2094, 2095, 5, 62, 0, 0, 2095, 462, 1, 0, 0, 0, 2096, 2097, 5, 42, 0, 0, 2097, 464, 1, 0, 0, 0, 2098, 2099, 5, 96, 0, 0, 2099, 466, 1, 0, 0, 0, 2100, 2101, 5, 92, 0, 0, 2101, 468, 1, 0, 0, 0, 2102, 2103, 5, 58, 0, 0, 2103, 470, 1, 0, 0, 0, 2104, 2105, 5, 44, 0, 0, 2105, 472, 1, 0, 0, 0, 2106, 2107, 5, 124, 0, 0, 2107, 2108, 5, 124, 0, 0, 2108, 474, 1, 0, 0, 0, 2109, 2110, 5, 45, 0, 0, 2110, 476, 1, 0, 0, 0, 2111, 2112, 5, 36, 0, 0, 2112, 478, 1, 0, 0, 0, 2113, 2114, 5, 46, 0, 0, 2114, 480, 1, 0, 0, 0, 2115, 2116, 5, 61, 0, 0, 2116, 2117, 5, 61, 0, 0, 2117, 482, 1, 0, 0, 0, 2118, 2119, 5, 61, 0, 0, 2119, 484, 1, 0, 0, 0, 2120, 2121, 5, 62, 0, 0, 2121, 2122, 5, 61, 0, 0, 2122, 486, 1, 0, 0, 0, 2123, 2124, 5, 62, 0, 0, 2124, 488, 1, 0, 0, 0, 2125, 2126, 5, 35, 0, 0, 2126, 490, 1, 0, 0, 0, 2127, 2128, 5, 126, 0, 0, 2128, 2129, 5, 42, 0, 0, 2129, 492, 1, 0, 0, 0, 2130, 2131, 5, 61, 0, 0, 2131, 2132, 5, 126, 0, 0, 2132, 2133, 5, 42, 0, 0, 2133, 494, 1, 0, 0, 0, 2134, 2135, 5, 123, 0, 0, 2135, 496, 1, 0, 0, 0, 2136, 2137, 5, 91, 0, 0, 2137, 498, 1, 0, 0, 0, 2138, 2139, 5, 40, 0, 0, 2139, 500, 1, 0, 0, 0, 2140, 2141, 5, 60, 0, 0, 2141, 2142, 5, 61, 0, 0, 2142, 502, 1, 0, 0, 0, 2143, 2144, 5, 60, 0, 0, 2144, 504, 1, 0, 0, 0, 2145, 2146, 5, 33, 0, 0, 2146, 2150, 5, 61, 0, 0, 2147, 2148, 5, 60, 0, 0, 2148, 2150, 5, 62, 0, 0, 2149, 2145, 1, 0, 0, 0, 2149, 2147, 1, 0, 0, 0, 2150, 506, 1, 0, 0, 0, 2151, 2152, 5, 33, 0, 0, 2152, 2153, 5, 126, 0, 0, 2153, 2154, 5, 42, 0, 0, 2154, 508, 1, 0, 0, 0, 2155, 2156, 5, 33, 0, 0, 2156, 2157, 5, 126, 0, 0, 2157, 510, 1, 0, 0, 0, 2158, 2159, 5, 37, 0, 0, 2159, 512, 1, 0, 0, 0, 2160, 2161, 5, 43, 0, 0, 2161, 514, 1, 0, 0, 0, 2162, 2163, 5, 63, 0, 0, 2163, 516, 1, 0, 0, 0, 2164, 2165, 5, 34, 0, 0, 2165, 518, 1, 0, 0, 0, 2166, 2167, 5, 39, 0, 0, 2167, 520, 1, 0, 0, 0, 2168, 2169, 5, 126, 0, 0, 2169, 522, 1, 0, 0, 0, 2170, 2171, 5, 61, 0, 0, 2171, 2172, 5, 126, 0, 0, 2172, 524, 1, 0, 0, 0, 2173, 2174, 5, 125, 0, 0, 2174, 526, 1, 0, 0, 0, 2175, 2176, 5, 93, 0, 0, 2176, 528, 1, 0, 0, 0, 2177, 2178, 5, 41, 0, 0, 2178, 530, 1, 0, 0, 0, 2179, 2180, 5, 59, 0, 0, 2180, 532, 1, 0, 0, 0, 2181, 2182, 5, 47, 0, 0, 2182, 534, 1, 0, 0, 0, 2183, 2184, 5, 95, 0, 0, 2184, 536, 1, 0, 0, 0, 2185, 2186, 5, 47, 0, 0, 2186, 2187, 5, 42, 0, 0, 2187, 2191, 1, 0, 0, 0, 2188, 2190, 9, 0, 0, 0, 2189, 2188, 1, 0, 0, 0, 2190, 2193, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2191, 2189, 1, 0, 0, 0, 2192, 2194, 1, 0, 0, 0, 2193, 2191, 1, 0, 0, 0, 2194, 2195, 5, 42, 0, 0, 2195, 2196, 5, 47, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2198, 6, 268, 0, 0, 2198, 538, 1, 0, 0, 0, 2199, 2200, 5, 45, 0, 0, 2200, 2201, 5, 45, 0, 0, 2201, 2205, 1, 0, 0, 0, 2202, 2204, 8, 34, 0, 0, 2203, 2202, 1, 0, 0, 0, 2204, 2207, 1, 0, 0, 0, 2205, 2203, 1, 0, 0, 0, 2205, 2206, 1, 0, 0, 0, 2206, 2209, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2208, 2210, 7, 35, 0, 0, 2209, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2212, 6, 269, 0, 0, 2212, 540, 1, 0, 0, 0, 2213, 2214, 7, 36, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 6, 270, 1, 0, 2216, 542, 1, 0, 0, 0, 39, 0, 605, 1110, 1824, 1867, 1872, 1878, 1880, 1889, 1891, 1902, 1904, 1909, 1916, 1921, 1925, 1930, 1935, 1939, 1944, 1951, 1957, 1962, 1969, 1974, 1980, 1985, 1987, 1993, 1998, 2005, 2013, 2015, 2026, 2028, 2149, 2191, 2205, 2209, 2, 6, 0, 0, 0, 1, 0] \ No newline at end of file diff --git a/posthog/hogql/grammar/HogQLLexer.py b/posthog/hogql/grammar/HogQLLexer.py index a88af8c0418a7..cfde64a5c2c8c 100644 --- a/posthog/hogql/grammar/HogQLLexer.py +++ b/posthog/hogql/grammar/HogQLLexer.py @@ -10,7 +10,7 @@ def serializedATN(): return [ - 4,0,235,2186,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, + 4,0,241,2217,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, 5,2,6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12, 2,13,7,13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19, 7,19,2,20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25, @@ -55,834 +55,847 @@ def serializedATN(): 7,246,2,247,7,247,2,248,7,248,2,249,7,249,2,250,7,250,2,251,7,251, 2,252,7,252,2,253,7,253,2,254,7,254,2,255,7,255,2,256,7,256,2,257, 7,257,2,258,7,258,2,259,7,259,2,260,7,260,2,261,7,261,2,262,7,262, - 2,263,7,263,2,264,7,264,1,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1, - 1,2,1,2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1,4,1,4, - 1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,8,1,8,1,8, - 1,8,1,8,1,8,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10, - 1,10,1,10,1,10,1,10,1,10,1,10,3,10,594,8,10,1,11,1,11,1,11,1,11, - 1,11,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,14,1,14, - 1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 1,16,1,16,1,16,1,16,1,16,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18, - 1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,21,1,21, - 1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,23, - 1,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,25, - 1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,1,26, - 1,26,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,28,1,28,1,28,1,28, - 1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29, - 1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,32, - 1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,33,1,33,1,33, - 1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, - 1,35,1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37, - 1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38,1,38, - 1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,40,1,40, - 1,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43,1,43, - 1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45, - 1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46, - 1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47,1,48, - 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49, - 1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50,1,51, - 1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53,1,53, - 1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,55,1,55,1,55,1,55, - 1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,57,1,57, - 1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58, - 1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,60, - 1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,61,1,62,1,62, - 1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,66, - 1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,68,1,68, - 1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,70, - 1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71,1,71, - 1,71,1,71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72,1,73,1,73, - 1,73,1,73,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74, - 1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,76,1,76,1,76, - 1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1,79,1,79,1,80, - 1,80,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,3,81,1099,8,81,1,82,1,82,1,82,1,82,1,82, - 1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84, - 1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,88,1,88,1,88,1,88, - 1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89, - 1,89,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1,92, - 1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94,1,94, - 1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96,1,96, - 1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,98,1,98,1,98, - 1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100, - 1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102, - 1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,103,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,104, - 1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,1,106, - 1,106,1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,107,1,107,1,108, - 1,108,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,109, - 1,109,1,110,1,110,1,110,1,110,1,110,1,111,1,111,1,111,1,111,1,111, - 1,111,1,111,1,111,1,111,1,112,1,112,1,112,1,112,1,113,1,113,1,113, - 1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115,1,116,1,116, - 1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,117,1,117, - 1,118,1,118,1,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121,1,122, - 1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123, - 1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125,1,125, - 1,125,1,125,1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,126, - 1,126,1,126,1,126,1,126,1,127,1,127,1,127,1,127,1,127,1,127,1,127, - 1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128,1,128,1,128,1,128, - 1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,130,1,130, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,131,1,131, - 1,131,1,131,1,131,1,131,1,131,1,131,1,132,1,132,1,132,1,132,1,132, - 1,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,134,1,134,1,134, - 1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,135,1,135, - 1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,137,1,137,1,137, - 1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139,1,139,1,139, - 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,141,1,141,1,141,1,141, - 1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143,1,143, - 1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,145,1,145,1,145, - 1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146,1,146,1,147,1,147, - 1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,149,1,149,1,149, - 1,149,1,149,1,149,1,149,1,149,1,149,1,150,1,150,1,150,1,150,1,150, - 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,152,1,152,1,152,1,152, - 1,152,1,152,1,153,1,153,1,153,1,153,1,153,1,154,1,154,1,154,1,154, - 1,154,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155,1,155,1,155, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1,159, - 1,159,1,159,1,159,1,159,1,159,1,160,1,160,1,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,162,1,162, - 1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163,1,164,1,164,1,164, - 1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,165,1,165, - 1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,167,1,167,1,167,1,167, - 1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,169,1,169,1,169,1,169, - 1,169,1,169,1,169,1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,171, - 1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,172,1,172,1,172, - 1,172,1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174, - 1,174,1,174,1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,175,1,175, - 1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177,1,177, - 1,178,1,178,1,178,1,178,1,178,1,178,1,179,1,179,1,179,1,179,1,179, - 1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,181,1,181,1,181,1,181, - 1,181,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,183,1,183,1,183, - 1,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184,1,185,1,185,1,185, - 1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,187,1,187,1,187, - 1,187,1,187,1,187,1,187,1,188,1,188,1,188,1,188,1,188,1,189,1,189, - 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,3,189,1813,8,189, - 1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191,1,191,1,191,1,191, + 2,263,7,263,2,264,7,264,2,265,7,265,2,266,7,266,2,267,7,267,2,268, + 7,268,2,269,7,269,2,270,7,270,1,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1, + 1,1,1,1,2,1,2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1, + 4,1,4,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,8,1, + 8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10,1,10, + 1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,606,8,10,1,11,1,11,1,11, + 1,11,1,11,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,14, + 1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15,1,15, + 1,15,1,16,1,16,1,16,1,16,1,16,1,17,1,17,1,17,1,18,1,18,1,18,1,18, + 1,18,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,1,21, + 1,21,1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22,1,22, + 1,23,1,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24,1,24,1,24, + 1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26, + 1,26,1,26,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,28,1,28,1,28, + 1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29, + 1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31, + 1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,33,1,33, + 1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, + 1,34,1,35,1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,37,1,37,1,37, + 1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,38,1,38,1,38,1,38, + 1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,40, + 1,40,1,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42, + 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43,1,43, + 1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,45,1,45,1,45, + 1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46, + 1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47,1,47, + 1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49, + 1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50,1,50, + 1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,53,1,53,1,53,1,53, + 1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,55,1,55,1,55, + 1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,57, + 1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58, + 1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59, + 1,60,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,61,1,62, + 1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,63, + 1,63,1,63,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65, + 1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67,1,68, + 1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69, + 1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71,1,71,1,71,1,71, + 1,71,1,71,1,71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72,1,73, + 1,73,1,73,1,73,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74, + 1,74,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,76,1,76, + 1,76,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1,79,1,79, + 1,80,1,80,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81,1,81, + 1,81,1,81,1,81,1,81,1,81,1,81,3,81,1111,8,81,1,82,1,82,1,82,1,82, + 1,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83,1,84, + 1,84,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,85, + 1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,88,1,88,1,88, + 1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89, + 1,89,1,89,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92,1,92, + 1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,94,1,94,1,94, + 1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1,96,1,96, + 1,96,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,98,1,98, + 1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1, + 100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,102,1,102,1,102, + 1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, + 1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105, + 1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,107,1,107, + 1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,109,1,109, + 1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,111,1,111,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,112,1,112,1,112,1,112,1,113,1,113, + 1,113,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115,1,116, + 1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,117, + 1,117,1,118,1,118,1,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121,1,121, + 1,122,1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123, + 1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126, + 1,126,1,126,1,126,1,126,1,126,1,127,1,127,1,127,1,127,1,127,1,127, + 1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128,1,128,1,128, + 1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,130, + 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,131, + 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,132,1,132,1,132,1,132, + 1,132,1,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,134,1,134, + 1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135,1,135, + 1,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,137,1,137, + 1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139,1,139, + 1,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,141,1,141,1,141, + 1,141,1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143,1,143, + 1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,145,1,145, + 1,145,1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146,1,146,1,147, + 1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,149,1,149, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,150,1,150,1,150,1,150, + 1,150,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,152,1,152,1,152, + 1,152,1,152,1,152,1,153,1,153,1,153,1,153,1,153,1,154,1,154,1,154, + 1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155,1,155, + 1,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157, + 1,157,1,157,1,157,1,157,1,158,1,158,1,158,1,158,1,158,1,158,1,159, + 1,159,1,159,1,159,1,159,1,159,1,159,1,160,1,160,1,160,1,160,1,160, + 1,160,1,160,1,160,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,162, + 1,162,1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163,1,164,1,164, + 1,164,1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,165, + 1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,167,1,167,1,167, + 1,167,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,169,1,169,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,170,1,170,1,170,1,170,1,170, + 1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,172,1,172, + 1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174, + 1,174,1,174,1,174,1,174,1,174,1,174,1,175,1,175,1,175,1,175,1,175, + 1,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,177,1,177,1,177, + 1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,179,1,179,1,179,1,179, + 1,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,181,1,181,1,181, + 1,181,1,181,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,183,1,183, + 1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184,1,185,1,185, + 1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,187,1,187, + 1,187,1,187,1,187,1,187,1,187,1,188,1,188,1,188,1,188,1,188,1,189, + 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,3,189,1825, + 8,189,1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191,1,191,1,191, + 1,191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, - 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, - 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,3,192,1856,8,192, - 1,193,1,193,1,193,3,193,1861,8,193,1,193,1,193,1,193,1,193,5,193, - 1867,8,193,10,193,12,193,1870,9,193,1,193,1,193,1,193,1,193,1,193, - 1,193,5,193,1878,8,193,10,193,12,193,1881,9,193,1,193,1,193,1,193, - 1,193,1,193,1,193,1,193,1,193,5,193,1891,8,193,10,193,12,193,1894, - 9,193,1,193,1,193,3,193,1898,8,193,1,194,1,194,1,194,5,194,1903, - 8,194,10,194,12,194,1906,9,194,1,194,1,194,3,194,1910,8,194,1,194, - 1,194,3,194,1914,8,194,1,194,4,194,1917,8,194,11,194,12,194,1918, - 1,194,1,194,1,194,3,194,1924,8,194,1,194,1,194,3,194,1928,8,194, - 1,194,4,194,1931,8,194,11,194,12,194,1932,1,194,1,194,1,194,5,194, - 1938,8,194,10,194,12,194,1941,9,194,1,194,1,194,1,194,3,194,1946, - 8,194,1,194,4,194,1949,8,194,11,194,12,194,1950,1,194,1,194,1,194, - 1,194,1,194,3,194,1958,8,194,1,194,4,194,1961,8,194,11,194,12,194, - 1962,1,194,1,194,1,194,1,194,3,194,1969,8,194,1,194,4,194,1972,8, - 194,11,194,12,194,1973,3,194,1976,8,194,1,195,1,195,4,195,1980,8, - 195,11,195,12,195,1981,1,196,4,196,1985,8,196,11,196,12,196,1986, - 1,197,1,197,1,197,4,197,1992,8,197,11,197,12,197,1993,1,198,1,198, - 1,198,1,198,1,198,1,198,5,198,2002,8,198,10,198,12,198,2005,9,198, - 1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199,5,199,2015,8,199, - 10,199,12,199,2018,9,199,1,199,1,199,1,200,1,200,1,201,1,201,1,202, - 1,202,1,203,1,203,1,204,1,204,1,205,1,205,1,206,1,206,1,207,1,207, - 1,208,1,208,1,209,1,209,1,210,1,210,1,211,1,211,1,212,1,212,1,213, - 1,213,1,214,1,214,1,215,1,215,1,216,1,216,1,217,1,217,1,218,1,218, - 1,219,1,219,1,220,1,220,1,221,1,221,1,222,1,222,1,223,1,223,1,224, - 1,224,1,225,1,225,1,226,1,226,1,227,1,227,1,228,1,228,1,229,1,229, - 1,230,1,230,1,230,1,231,1,231,1,232,1,232,1,233,1,233,1,234,1,234, - 1,235,1,235,1,236,1,236,1,236,1,237,1,237,1,238,1,238,1,239,1,239, - 1,240,1,240,1,240,1,241,1,241,1,242,1,242,1,242,1,243,1,243,1,244, - 1,244,1,245,1,245,1,246,1,246,1,247,1,247,1,248,1,248,1,248,1,249, - 1,249,1,250,1,250,1,250,1,250,3,250,2131,8,250,1,251,1,251,1,252, - 1,252,1,253,1,253,1,254,1,254,1,255,1,255,1,256,1,256,1,257,1,257, - 1,258,1,258,1,259,1,259,1,260,1,260,1,261,1,261,1,262,1,262,1,262, - 1,262,5,262,2159,8,262,10,262,12,262,2162,9,262,1,262,1,262,1,262, - 1,262,1,262,1,263,1,263,1,263,1,263,5,263,2173,8,263,10,263,12,263, - 2176,9,263,1,263,3,263,2179,8,263,1,263,1,263,1,264,1,264,1,264, - 1,264,1,2160,0,265,1,1,3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10, - 21,11,23,12,25,13,27,14,29,15,31,16,33,17,35,18,37,19,39,20,41,21, - 43,22,45,23,47,24,49,25,51,26,53,27,55,28,57,29,59,30,61,31,63,32, - 65,33,67,34,69,35,71,36,73,37,75,38,77,39,79,40,81,41,83,42,85,43, - 87,44,89,45,91,46,93,47,95,48,97,49,99,50,101,51,103,52,105,53,107, - 54,109,55,111,56,113,57,115,58,117,59,119,60,121,61,123,62,125,63, - 127,64,129,65,131,66,133,67,135,68,137,69,139,70,141,71,143,72,145, - 73,147,74,149,75,151,76,153,77,155,78,157,79,159,80,161,81,163,82, - 165,83,167,84,169,85,171,86,173,87,175,88,177,89,179,90,181,91,183, - 92,185,93,187,94,189,95,191,96,193,97,195,98,197,99,199,100,201, - 101,203,102,205,103,207,104,209,105,211,106,213,107,215,108,217, - 109,219,110,221,111,223,112,225,113,227,114,229,115,231,116,233, - 117,235,118,237,119,239,120,241,121,243,122,245,123,247,124,249, - 125,251,126,253,127,255,128,257,129,259,130,261,131,263,132,265, - 133,267,134,269,135,271,136,273,137,275,138,277,139,279,140,281, - 141,283,142,285,143,287,144,289,145,291,146,293,147,295,148,297, - 149,299,150,301,151,303,152,305,153,307,154,309,155,311,156,313, - 157,315,158,317,159,319,160,321,161,323,162,325,163,327,164,329, - 165,331,166,333,167,335,168,337,169,339,170,341,171,343,172,345, - 173,347,174,349,175,351,176,353,177,355,178,357,179,359,180,361, - 181,363,182,365,183,367,184,369,185,371,186,373,187,375,188,377, - 189,379,190,381,191,383,192,385,193,387,194,389,195,391,196,393, - 197,395,198,397,199,399,200,401,0,403,0,405,0,407,0,409,0,411,0, - 413,0,415,0,417,0,419,0,421,0,423,0,425,0,427,0,429,0,431,0,433, - 0,435,0,437,0,439,0,441,0,443,0,445,0,447,0,449,0,451,0,453,0,455, - 0,457,0,459,0,461,201,463,202,465,203,467,204,469,205,471,206,473, - 207,475,208,477,209,479,210,481,211,483,212,485,213,487,214,489, - 215,491,216,493,217,495,218,497,219,499,220,501,221,503,222,505, - 223,507,224,509,225,511,226,513,227,515,228,517,229,519,230,521, - 231,523,232,525,233,527,234,529,235,1,0,37,2,0,92,92,96,96,2,0,34, - 34,92,92,2,0,39,39,92,92,2,0,92,92,125,125,2,0,65,65,97,97,2,0,66, - 66,98,98,2,0,67,67,99,99,2,0,68,68,100,100,2,0,69,69,101,101,2,0, - 70,70,102,102,2,0,71,71,103,103,2,0,72,72,104,104,2,0,73,73,105, - 105,2,0,74,74,106,106,2,0,75,75,107,107,2,0,76,76,108,108,2,0,77, - 77,109,109,2,0,78,78,110,110,2,0,79,79,111,111,2,0,80,80,112,112, - 2,0,81,81,113,113,2,0,82,82,114,114,2,0,83,83,115,115,2,0,84,84, - 116,116,2,0,85,85,117,117,2,0,86,86,118,118,2,0,87,87,119,119,2, - 0,88,88,120,120,2,0,89,89,121,121,2,0,90,90,122,122,2,0,65,90,97, - 122,1,0,48,55,1,0,48,57,3,0,48,57,65,70,97,102,2,0,10,10,13,13,2, - 1,10,10,13,13,2,0,9,13,32,32,2216,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1, - 0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0, - 0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0, - 0,0,0,27,1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0, - 0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0, - 0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0, - 0,0,0,57,1,0,0,0,0,59,1,0,0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1,0, - 0,0,0,67,1,0,0,0,0,69,1,0,0,0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1,0, - 0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81,1,0,0,0,0,83,1,0,0,0,0,85,1,0, - 0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1,0, - 0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103,1,0,0,0,0,105, - 1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0, - 0,115,1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1, - 0,0,0,0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0, - 133,1,0,0,0,0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0, - 0,0,0,143,1,0,0,0,0,145,1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151, - 1,0,0,0,0,153,1,0,0,0,0,155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0, - 0,161,1,0,0,0,0,163,1,0,0,0,0,165,1,0,0,0,0,167,1,0,0,0,0,169,1, - 0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0, - 179,1,0,0,0,0,181,1,0,0,0,0,183,1,0,0,0,0,185,1,0,0,0,0,187,1,0, - 0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197, - 1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0, - 0,207,1,0,0,0,0,209,1,0,0,0,0,211,1,0,0,0,0,213,1,0,0,0,0,215,1, - 0,0,0,0,217,1,0,0,0,0,219,1,0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0, - 225,1,0,0,0,0,227,1,0,0,0,0,229,1,0,0,0,0,231,1,0,0,0,0,233,1,0, - 0,0,0,235,1,0,0,0,0,237,1,0,0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243, - 1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0,0,249,1,0,0,0,0,251,1,0,0,0, - 0,253,1,0,0,0,0,255,1,0,0,0,0,257,1,0,0,0,0,259,1,0,0,0,0,261,1, - 0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0, - 271,1,0,0,0,0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0,279,1,0, - 0,0,0,281,1,0,0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289, - 1,0,0,0,0,291,1,0,0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0, - 0,299,1,0,0,0,0,301,1,0,0,0,0,303,1,0,0,0,0,305,1,0,0,0,0,307,1, - 0,0,0,0,309,1,0,0,0,0,311,1,0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0, - 317,1,0,0,0,0,319,1,0,0,0,0,321,1,0,0,0,0,323,1,0,0,0,0,325,1,0, - 0,0,0,327,1,0,0,0,0,329,1,0,0,0,0,331,1,0,0,0,0,333,1,0,0,0,0,335, - 1,0,0,0,0,337,1,0,0,0,0,339,1,0,0,0,0,341,1,0,0,0,0,343,1,0,0,0, - 0,345,1,0,0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351,1,0,0,0,0,353,1, - 0,0,0,0,355,1,0,0,0,0,357,1,0,0,0,0,359,1,0,0,0,0,361,1,0,0,0,0, - 363,1,0,0,0,0,365,1,0,0,0,0,367,1,0,0,0,0,369,1,0,0,0,0,371,1,0, - 0,0,0,373,1,0,0,0,0,375,1,0,0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381, - 1,0,0,0,0,383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0, - 0,391,1,0,0,0,0,393,1,0,0,0,0,395,1,0,0,0,0,397,1,0,0,0,0,399,1, - 0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0,465,1,0,0,0,0,467,1,0,0,0,0, - 469,1,0,0,0,0,471,1,0,0,0,0,473,1,0,0,0,0,475,1,0,0,0,0,477,1,0, - 0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483,1,0,0,0,0,485,1,0,0,0,0,487, - 1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0,0,493,1,0,0,0,0,495,1,0,0,0, - 0,497,1,0,0,0,0,499,1,0,0,0,0,501,1,0,0,0,0,503,1,0,0,0,0,505,1, - 0,0,0,0,507,1,0,0,0,0,509,1,0,0,0,0,511,1,0,0,0,0,513,1,0,0,0,0, - 515,1,0,0,0,0,517,1,0,0,0,0,519,1,0,0,0,0,521,1,0,0,0,0,523,1,0, - 0,0,0,525,1,0,0,0,0,527,1,0,0,0,0,529,1,0,0,0,1,531,1,0,0,0,3,535, - 1,0,0,0,5,541,1,0,0,0,7,547,1,0,0,0,9,551,1,0,0,0,11,557,1,0,0,0, - 13,561,1,0,0,0,15,566,1,0,0,0,17,570,1,0,0,0,19,576,1,0,0,0,21,593, - 1,0,0,0,23,595,1,0,0,0,25,600,1,0,0,0,27,604,1,0,0,0,29,610,1,0, - 0,0,31,617,1,0,0,0,33,625,1,0,0,0,35,630,1,0,0,0,37,633,1,0,0,0, - 39,638,1,0,0,0,41,643,1,0,0,0,43,649,1,0,0,0,45,655,1,0,0,0,47,663, - 1,0,0,0,49,669,1,0,0,0,51,676,1,0,0,0,53,684,1,0,0,0,55,691,1,0, - 0,0,57,699,1,0,0,0,59,710,1,0,0,0,61,717,1,0,0,0,63,723,1,0,0,0, - 65,728,1,0,0,0,67,736,1,0,0,0,69,745,1,0,0,0,71,755,1,0,0,0,73,760, - 1,0,0,0,75,764,1,0,0,0,77,776,1,0,0,0,79,784,1,0,0,0,81,790,1,0, - 0,0,83,797,1,0,0,0,85,802,1,0,0,0,87,813,1,0,0,0,89,822,1,0,0,0, - 91,829,1,0,0,0,93,842,1,0,0,0,95,853,1,0,0,0,97,858,1,0,0,0,99,867, - 1,0,0,0,101,879,1,0,0,0,103,884,1,0,0,0,105,889,1,0,0,0,107,893, - 1,0,0,0,109,900,1,0,0,0,111,907,1,0,0,0,113,914,1,0,0,0,115,922, - 1,0,0,0,117,933,1,0,0,0,119,941,1,0,0,0,121,949,1,0,0,0,123,955, - 1,0,0,0,125,961,1,0,0,0,127,967,1,0,0,0,129,977,1,0,0,0,131,981, - 1,0,0,0,133,988,1,0,0,0,135,995,1,0,0,0,137,1000,1,0,0,0,139,1005, - 1,0,0,0,141,1014,1,0,0,0,143,1021,1,0,0,0,145,1033,1,0,0,0,147,1039, - 1,0,0,0,149,1046,1,0,0,0,151,1059,1,0,0,0,153,1064,1,0,0,0,155,1067, - 1,0,0,0,157,1070,1,0,0,0,159,1076,1,0,0,0,161,1079,1,0,0,0,163,1098, - 1,0,0,0,165,1100,1,0,0,0,167,1110,1,0,0,0,169,1116,1,0,0,0,171,1123, - 1,0,0,0,173,1132,1,0,0,0,175,1137,1,0,0,0,177,1140,1,0,0,0,179,1153, - 1,0,0,0,181,1158,1,0,0,0,183,1162,1,0,0,0,185,1167,1,0,0,0,187,1172, - 1,0,0,0,189,1179,1,0,0,0,191,1187,1,0,0,0,193,1192,1,0,0,0,195,1201, - 1,0,0,0,197,1206,1,0,0,0,199,1212,1,0,0,0,201,1217,1,0,0,0,203,1223, - 1,0,0,0,205,1228,1,0,0,0,207,1240,1,0,0,0,209,1253,1,0,0,0,211,1257, - 1,0,0,0,213,1264,1,0,0,0,215,1268,1,0,0,0,217,1275,1,0,0,0,219,1282, - 1,0,0,0,221,1288,1,0,0,0,223,1293,1,0,0,0,225,1302,1,0,0,0,227,1306, - 1,0,0,0,229,1309,1,0,0,0,231,1313,1,0,0,0,233,1318,1,0,0,0,235,1324, - 1,0,0,0,237,1331,1,0,0,0,239,1334,1,0,0,0,241,1343,1,0,0,0,243,1346, - 1,0,0,0,245,1352,1,0,0,0,247,1358,1,0,0,0,249,1366,1,0,0,0,251,1371, - 1,0,0,0,253,1381,1,0,0,0,255,1390,1,0,0,0,257,1400,1,0,0,0,259,1409, - 1,0,0,0,261,1417,1,0,0,0,263,1428,1,0,0,0,265,1436,1,0,0,0,267,1442, - 1,0,0,0,269,1449,1,0,0,0,271,1456,1,0,0,0,273,1463,1,0,0,0,275,1471, - 1,0,0,0,277,1479,1,0,0,0,279,1490,1,0,0,0,281,1496,1,0,0,0,283,1503, - 1,0,0,0,285,1507,1,0,0,0,287,1512,1,0,0,0,289,1519,1,0,0,0,291,1526, - 1,0,0,0,293,1533,1,0,0,0,295,1538,1,0,0,0,297,1544,1,0,0,0,299,1548, - 1,0,0,0,301,1557,1,0,0,0,303,1562,1,0,0,0,305,1569,1,0,0,0,307,1575, - 1,0,0,0,309,1580,1,0,0,0,311,1590,1,0,0,0,313,1595,1,0,0,0,315,1602, - 1,0,0,0,317,1609,1,0,0,0,319,1615,1,0,0,0,321,1622,1,0,0,0,323,1632, - 1,0,0,0,325,1637,1,0,0,0,327,1642,1,0,0,0,329,1647,1,0,0,0,331,1655, - 1,0,0,0,333,1665,1,0,0,0,335,1668,1,0,0,0,337,1672,1,0,0,0,339,1679, - 1,0,0,0,341,1688,1,0,0,0,343,1693,1,0,0,0,345,1702,1,0,0,0,347,1706, - 1,0,0,0,349,1711,1,0,0,0,351,1721,1,0,0,0,353,1727,1,0,0,0,355,1734, - 1,0,0,0,357,1738,1,0,0,0,359,1744,1,0,0,0,361,1749,1,0,0,0,363,1756, - 1,0,0,0,365,1761,1,0,0,0,367,1768,1,0,0,0,369,1774,1,0,0,0,371,1779, - 1,0,0,0,373,1784,1,0,0,0,375,1790,1,0,0,0,377,1797,1,0,0,0,379,1812, - 1,0,0,0,381,1814,1,0,0,0,383,1820,1,0,0,0,385,1855,1,0,0,0,387,1897, - 1,0,0,0,389,1975,1,0,0,0,391,1977,1,0,0,0,393,1984,1,0,0,0,395,1988, - 1,0,0,0,397,1995,1,0,0,0,399,2008,1,0,0,0,401,2021,1,0,0,0,403,2023, - 1,0,0,0,405,2025,1,0,0,0,407,2027,1,0,0,0,409,2029,1,0,0,0,411,2031, - 1,0,0,0,413,2033,1,0,0,0,415,2035,1,0,0,0,417,2037,1,0,0,0,419,2039, - 1,0,0,0,421,2041,1,0,0,0,423,2043,1,0,0,0,425,2045,1,0,0,0,427,2047, - 1,0,0,0,429,2049,1,0,0,0,431,2051,1,0,0,0,433,2053,1,0,0,0,435,2055, - 1,0,0,0,437,2057,1,0,0,0,439,2059,1,0,0,0,441,2061,1,0,0,0,443,2063, - 1,0,0,0,445,2065,1,0,0,0,447,2067,1,0,0,0,449,2069,1,0,0,0,451,2071, - 1,0,0,0,453,2073,1,0,0,0,455,2075,1,0,0,0,457,2077,1,0,0,0,459,2079, - 1,0,0,0,461,2081,1,0,0,0,463,2084,1,0,0,0,465,2086,1,0,0,0,467,2088, - 1,0,0,0,469,2090,1,0,0,0,471,2092,1,0,0,0,473,2094,1,0,0,0,475,2097, - 1,0,0,0,477,2099,1,0,0,0,479,2101,1,0,0,0,481,2103,1,0,0,0,483,2106, - 1,0,0,0,485,2108,1,0,0,0,487,2111,1,0,0,0,489,2113,1,0,0,0,491,2115, - 1,0,0,0,493,2117,1,0,0,0,495,2119,1,0,0,0,497,2121,1,0,0,0,499,2124, - 1,0,0,0,501,2130,1,0,0,0,503,2132,1,0,0,0,505,2134,1,0,0,0,507,2136, - 1,0,0,0,509,2138,1,0,0,0,511,2140,1,0,0,0,513,2142,1,0,0,0,515,2144, - 1,0,0,0,517,2146,1,0,0,0,519,2148,1,0,0,0,521,2150,1,0,0,0,523,2152, - 1,0,0,0,525,2154,1,0,0,0,527,2168,1,0,0,0,529,2182,1,0,0,0,531,532, - 3,401,200,0,532,533,3,407,203,0,533,534,3,407,203,0,534,2,1,0,0, - 0,535,536,3,401,200,0,536,537,3,411,205,0,537,538,3,439,219,0,538, - 539,3,409,204,0,539,540,3,435,217,0,540,4,1,0,0,0,541,542,3,401, - 200,0,542,543,3,423,211,0,543,544,3,417,208,0,544,545,3,401,200, - 0,545,546,3,437,218,0,546,6,1,0,0,0,547,548,3,401,200,0,548,549, - 3,423,211,0,549,550,3,423,211,0,550,8,1,0,0,0,551,552,3,401,200, - 0,552,553,3,423,211,0,553,554,3,439,219,0,554,555,3,409,204,0,555, - 556,3,435,217,0,556,10,1,0,0,0,557,558,3,401,200,0,558,559,3,427, - 213,0,559,560,3,407,203,0,560,12,1,0,0,0,561,562,3,401,200,0,562, - 563,3,427,213,0,563,564,3,439,219,0,564,565,3,417,208,0,565,14,1, - 0,0,0,566,567,3,401,200,0,567,568,3,427,213,0,568,569,3,449,224, - 0,569,16,1,0,0,0,570,571,3,401,200,0,571,572,3,435,217,0,572,573, - 3,435,217,0,573,574,3,401,200,0,574,575,3,449,224,0,575,18,1,0,0, - 0,576,577,3,401,200,0,577,578,3,437,218,0,578,20,1,0,0,0,579,580, - 3,401,200,0,580,581,3,437,218,0,581,582,3,405,202,0,582,594,1,0, - 0,0,583,584,3,401,200,0,584,585,3,437,218,0,585,586,3,405,202,0, - 586,587,3,409,204,0,587,588,3,427,213,0,588,589,3,407,203,0,589, - 590,3,417,208,0,590,591,3,427,213,0,591,592,3,413,206,0,592,594, - 1,0,0,0,593,579,1,0,0,0,593,583,1,0,0,0,594,22,1,0,0,0,595,596,3, - 401,200,0,596,597,3,437,218,0,597,598,3,429,214,0,598,599,3,411, - 205,0,599,24,1,0,0,0,600,601,3,401,200,0,601,602,3,437,218,0,602, - 603,3,439,219,0,603,26,1,0,0,0,604,605,3,401,200,0,605,606,3,437, - 218,0,606,607,3,449,224,0,607,608,3,427,213,0,608,609,3,405,202, - 0,609,28,1,0,0,0,610,611,3,401,200,0,611,612,3,439,219,0,612,613, - 3,439,219,0,613,614,3,401,200,0,614,615,3,405,202,0,615,616,3,415, - 207,0,616,30,1,0,0,0,617,618,3,403,201,0,618,619,3,409,204,0,619, - 620,3,439,219,0,620,621,3,445,222,0,621,622,3,409,204,0,622,623, - 3,409,204,0,623,624,3,427,213,0,624,32,1,0,0,0,625,626,3,403,201, - 0,626,627,3,429,214,0,627,628,3,439,219,0,628,629,3,415,207,0,629, - 34,1,0,0,0,630,631,3,403,201,0,631,632,3,449,224,0,632,36,1,0,0, - 0,633,634,3,405,202,0,634,635,3,401,200,0,635,636,3,437,218,0,636, - 637,3,409,204,0,637,38,1,0,0,0,638,639,3,405,202,0,639,640,3,401, - 200,0,640,641,3,437,218,0,641,642,3,439,219,0,642,40,1,0,0,0,643, - 644,3,405,202,0,644,645,3,415,207,0,645,646,3,409,204,0,646,647, - 3,405,202,0,647,648,3,421,210,0,648,42,1,0,0,0,649,650,3,405,202, - 0,650,651,3,423,211,0,651,652,3,409,204,0,652,653,3,401,200,0,653, - 654,3,435,217,0,654,44,1,0,0,0,655,656,3,405,202,0,656,657,3,423, - 211,0,657,658,3,441,220,0,658,659,3,437,218,0,659,660,3,439,219, - 0,660,661,3,409,204,0,661,662,3,435,217,0,662,46,1,0,0,0,663,664, - 3,405,202,0,664,665,3,429,214,0,665,666,3,407,203,0,666,667,3,409, - 204,0,667,668,3,405,202,0,668,48,1,0,0,0,669,670,3,405,202,0,670, - 671,3,429,214,0,671,672,3,415,207,0,672,673,3,429,214,0,673,674, - 3,435,217,0,674,675,3,439,219,0,675,50,1,0,0,0,676,677,3,405,202, - 0,677,678,3,429,214,0,678,679,3,423,211,0,679,680,3,423,211,0,680, - 681,3,401,200,0,681,682,3,439,219,0,682,683,3,409,204,0,683,52,1, - 0,0,0,684,685,3,405,202,0,685,686,3,429,214,0,686,687,3,423,211, - 0,687,688,3,441,220,0,688,689,3,425,212,0,689,690,3,427,213,0,690, - 54,1,0,0,0,691,692,3,405,202,0,692,693,3,429,214,0,693,694,3,425, - 212,0,694,695,3,425,212,0,695,696,3,409,204,0,696,697,3,427,213, - 0,697,698,3,439,219,0,698,56,1,0,0,0,699,700,3,405,202,0,700,701, - 3,429,214,0,701,702,3,427,213,0,702,703,3,437,218,0,703,704,3,439, - 219,0,704,705,3,435,217,0,705,706,3,401,200,0,706,707,3,417,208, - 0,707,708,3,427,213,0,708,709,3,439,219,0,709,58,1,0,0,0,710,711, - 3,405,202,0,711,712,3,435,217,0,712,713,3,409,204,0,713,714,3,401, - 200,0,714,715,3,439,219,0,715,716,3,409,204,0,716,60,1,0,0,0,717, - 718,3,405,202,0,718,719,3,435,217,0,719,720,3,429,214,0,720,721, - 3,437,218,0,721,722,3,437,218,0,722,62,1,0,0,0,723,724,3,405,202, - 0,724,725,3,441,220,0,725,726,3,403,201,0,726,727,3,409,204,0,727, - 64,1,0,0,0,728,729,3,405,202,0,729,730,3,441,220,0,730,731,3,435, - 217,0,731,732,3,435,217,0,732,733,3,409,204,0,733,734,3,427,213, - 0,734,735,3,439,219,0,735,66,1,0,0,0,736,737,3,407,203,0,737,738, - 3,401,200,0,738,739,3,439,219,0,739,740,3,401,200,0,740,741,3,403, - 201,0,741,742,3,401,200,0,742,743,3,437,218,0,743,744,3,409,204, - 0,744,68,1,0,0,0,745,746,3,407,203,0,746,747,3,401,200,0,747,748, - 3,439,219,0,748,749,3,401,200,0,749,750,3,403,201,0,750,751,3,401, - 200,0,751,752,3,437,218,0,752,753,3,409,204,0,753,754,3,437,218, - 0,754,70,1,0,0,0,755,756,3,407,203,0,756,757,3,401,200,0,757,758, - 3,439,219,0,758,759,3,409,204,0,759,72,1,0,0,0,760,761,3,407,203, - 0,761,762,3,401,200,0,762,763,3,449,224,0,763,74,1,0,0,0,764,765, - 3,407,203,0,765,766,3,409,204,0,766,767,3,407,203,0,767,768,3,441, - 220,0,768,769,3,431,215,0,769,770,3,423,211,0,770,771,3,417,208, - 0,771,772,3,405,202,0,772,773,3,401,200,0,773,774,3,439,219,0,774, - 775,3,409,204,0,775,76,1,0,0,0,776,777,3,407,203,0,777,778,3,409, - 204,0,778,779,3,411,205,0,779,780,3,401,200,0,780,781,3,441,220, - 0,781,782,3,423,211,0,782,783,3,439,219,0,783,78,1,0,0,0,784,785, - 3,407,203,0,785,786,3,409,204,0,786,787,3,423,211,0,787,788,3,401, - 200,0,788,789,3,449,224,0,789,80,1,0,0,0,790,791,3,407,203,0,791, - 792,3,409,204,0,792,793,3,423,211,0,793,794,3,409,204,0,794,795, - 3,439,219,0,795,796,3,409,204,0,796,82,1,0,0,0,797,798,3,407,203, - 0,798,799,3,409,204,0,799,800,3,437,218,0,800,801,3,405,202,0,801, - 84,1,0,0,0,802,803,3,407,203,0,803,804,3,409,204,0,804,805,3,437, - 218,0,805,806,3,405,202,0,806,807,3,409,204,0,807,808,3,427,213, - 0,808,809,3,407,203,0,809,810,3,417,208,0,810,811,3,427,213,0,811, - 812,3,413,206,0,812,86,1,0,0,0,813,814,3,407,203,0,814,815,3,409, - 204,0,815,816,3,437,218,0,816,817,3,405,202,0,817,818,3,435,217, - 0,818,819,3,417,208,0,819,820,3,403,201,0,820,821,3,409,204,0,821, - 88,1,0,0,0,822,823,3,407,203,0,823,824,3,409,204,0,824,825,3,439, - 219,0,825,826,3,401,200,0,826,827,3,405,202,0,827,828,3,415,207, - 0,828,90,1,0,0,0,829,830,3,407,203,0,830,831,3,417,208,0,831,832, - 3,405,202,0,832,833,3,439,219,0,833,834,3,417,208,0,834,835,3,429, - 214,0,835,836,3,427,213,0,836,837,3,401,200,0,837,838,3,435,217, - 0,838,839,3,417,208,0,839,840,3,409,204,0,840,841,3,437,218,0,841, - 92,1,0,0,0,842,843,3,407,203,0,843,844,3,417,208,0,844,845,3,405, - 202,0,845,846,3,439,219,0,846,847,3,417,208,0,847,848,3,429,214, - 0,848,849,3,427,213,0,849,850,3,401,200,0,850,851,3,435,217,0,851, - 852,3,449,224,0,852,94,1,0,0,0,853,854,3,407,203,0,854,855,3,417, - 208,0,855,856,3,437,218,0,856,857,3,421,210,0,857,96,1,0,0,0,858, - 859,3,407,203,0,859,860,3,417,208,0,860,861,3,437,218,0,861,862, - 3,439,219,0,862,863,3,417,208,0,863,864,3,427,213,0,864,865,3,405, - 202,0,865,866,3,439,219,0,866,98,1,0,0,0,867,868,3,407,203,0,868, - 869,3,417,208,0,869,870,3,437,218,0,870,871,3,439,219,0,871,872, - 3,435,217,0,872,873,3,417,208,0,873,874,3,403,201,0,874,875,3,441, - 220,0,875,876,3,439,219,0,876,877,3,409,204,0,877,878,3,407,203, - 0,878,100,1,0,0,0,879,880,3,407,203,0,880,881,3,435,217,0,881,882, - 3,429,214,0,882,883,3,431,215,0,883,102,1,0,0,0,884,885,3,409,204, - 0,885,886,3,423,211,0,886,887,3,437,218,0,887,888,3,409,204,0,888, - 104,1,0,0,0,889,890,3,409,204,0,890,891,3,427,213,0,891,892,3,407, - 203,0,892,106,1,0,0,0,893,894,3,409,204,0,894,895,3,427,213,0,895, - 896,3,413,206,0,896,897,3,417,208,0,897,898,3,427,213,0,898,899, - 3,409,204,0,899,108,1,0,0,0,900,901,3,409,204,0,901,902,3,443,221, - 0,902,903,3,409,204,0,903,904,3,427,213,0,904,905,3,439,219,0,905, - 906,3,437,218,0,906,110,1,0,0,0,907,908,3,409,204,0,908,909,3,447, - 223,0,909,910,3,417,208,0,910,911,3,437,218,0,911,912,3,439,219, - 0,912,913,3,437,218,0,913,112,1,0,0,0,914,915,3,409,204,0,915,916, - 3,447,223,0,916,917,3,431,215,0,917,918,3,423,211,0,918,919,3,401, - 200,0,919,920,3,417,208,0,920,921,3,427,213,0,921,114,1,0,0,0,922, - 923,3,409,204,0,923,924,3,447,223,0,924,925,3,431,215,0,925,926, - 3,435,217,0,926,927,3,409,204,0,927,928,3,437,218,0,928,929,3,437, - 218,0,929,930,3,417,208,0,930,931,3,429,214,0,931,932,3,427,213, - 0,932,116,1,0,0,0,933,934,3,409,204,0,934,935,3,447,223,0,935,936, - 3,439,219,0,936,937,3,435,217,0,937,938,3,401,200,0,938,939,3,405, - 202,0,939,940,3,439,219,0,940,118,1,0,0,0,941,942,3,411,205,0,942, - 943,3,409,204,0,943,944,3,439,219,0,944,945,3,405,202,0,945,946, - 3,415,207,0,946,947,3,409,204,0,947,948,3,437,218,0,948,120,1,0, - 0,0,949,950,3,411,205,0,950,951,3,417,208,0,951,952,3,427,213,0, - 952,953,3,401,200,0,953,954,3,423,211,0,954,122,1,0,0,0,955,956, - 3,411,205,0,956,957,3,417,208,0,957,958,3,435,217,0,958,959,3,437, - 218,0,959,960,3,439,219,0,960,124,1,0,0,0,961,962,3,411,205,0,962, - 963,3,423,211,0,963,964,3,441,220,0,964,965,3,437,218,0,965,966, - 3,415,207,0,966,126,1,0,0,0,967,968,3,411,205,0,968,969,3,429,214, - 0,969,970,3,423,211,0,970,971,3,423,211,0,971,972,3,429,214,0,972, - 973,3,445,222,0,973,974,3,417,208,0,974,975,3,427,213,0,975,976, - 3,413,206,0,976,128,1,0,0,0,977,978,3,411,205,0,978,979,3,429,214, - 0,979,980,3,435,217,0,980,130,1,0,0,0,981,982,3,411,205,0,982,983, - 3,429,214,0,983,984,3,435,217,0,984,985,3,425,212,0,985,986,3,401, - 200,0,986,987,3,439,219,0,987,132,1,0,0,0,988,989,3,411,205,0,989, - 990,3,435,217,0,990,991,3,409,204,0,991,992,3,409,204,0,992,993, - 3,451,225,0,993,994,3,409,204,0,994,134,1,0,0,0,995,996,3,411,205, - 0,996,997,3,435,217,0,997,998,3,429,214,0,998,999,3,425,212,0,999, - 136,1,0,0,0,1000,1001,3,411,205,0,1001,1002,3,441,220,0,1002,1003, - 3,423,211,0,1003,1004,3,423,211,0,1004,138,1,0,0,0,1005,1006,3,411, - 205,0,1006,1007,3,441,220,0,1007,1008,3,427,213,0,1008,1009,3,405, - 202,0,1009,1010,3,439,219,0,1010,1011,3,417,208,0,1011,1012,3,429, - 214,0,1012,1013,3,427,213,0,1013,140,1,0,0,0,1014,1015,3,413,206, - 0,1015,1016,3,423,211,0,1016,1017,3,429,214,0,1017,1018,3,403,201, - 0,1018,1019,3,401,200,0,1019,1020,3,423,211,0,1020,142,1,0,0,0,1021, - 1022,3,413,206,0,1022,1023,3,435,217,0,1023,1024,3,401,200,0,1024, - 1025,3,427,213,0,1025,1026,3,441,220,0,1026,1027,3,423,211,0,1027, - 1028,3,401,200,0,1028,1029,3,435,217,0,1029,1030,3,417,208,0,1030, - 1031,3,439,219,0,1031,1032,3,449,224,0,1032,144,1,0,0,0,1033,1034, - 3,413,206,0,1034,1035,3,435,217,0,1035,1036,3,429,214,0,1036,1037, - 3,441,220,0,1037,1038,3,431,215,0,1038,146,1,0,0,0,1039,1040,3,415, - 207,0,1040,1041,3,401,200,0,1041,1042,3,443,221,0,1042,1043,3,417, - 208,0,1043,1044,3,427,213,0,1044,1045,3,413,206,0,1045,148,1,0,0, - 0,1046,1047,3,415,207,0,1047,1048,3,417,208,0,1048,1049,3,409,204, - 0,1049,1050,3,435,217,0,1050,1051,3,401,200,0,1051,1052,3,435,217, - 0,1052,1053,3,405,202,0,1053,1054,3,415,207,0,1054,1055,3,417,208, - 0,1055,1056,3,405,202,0,1056,1057,3,401,200,0,1057,1058,3,423,211, - 0,1058,150,1,0,0,0,1059,1060,3,415,207,0,1060,1061,3,429,214,0,1061, - 1062,3,441,220,0,1062,1063,3,435,217,0,1063,152,1,0,0,0,1064,1065, - 3,417,208,0,1065,1066,3,407,203,0,1066,154,1,0,0,0,1067,1068,3,417, - 208,0,1068,1069,3,411,205,0,1069,156,1,0,0,0,1070,1071,3,417,208, - 0,1071,1072,3,423,211,0,1072,1073,3,417,208,0,1073,1074,3,421,210, - 0,1074,1075,3,409,204,0,1075,158,1,0,0,0,1076,1077,3,417,208,0,1077, - 1078,3,427,213,0,1078,160,1,0,0,0,1079,1080,3,417,208,0,1080,1081, - 3,427,213,0,1081,1082,3,407,203,0,1082,1083,3,409,204,0,1083,1084, - 3,447,223,0,1084,162,1,0,0,0,1085,1086,3,417,208,0,1086,1087,3,427, - 213,0,1087,1088,3,411,205,0,1088,1099,1,0,0,0,1089,1090,3,417,208, - 0,1090,1091,3,427,213,0,1091,1092,3,411,205,0,1092,1093,3,417,208, - 0,1093,1094,3,427,213,0,1094,1095,3,417,208,0,1095,1096,3,439,219, - 0,1096,1097,3,449,224,0,1097,1099,1,0,0,0,1098,1085,1,0,0,0,1098, - 1089,1,0,0,0,1099,164,1,0,0,0,1100,1101,3,417,208,0,1101,1102,3, - 427,213,0,1102,1103,3,419,209,0,1103,1104,3,409,204,0,1104,1105, - 3,405,202,0,1105,1106,3,439,219,0,1106,1107,3,417,208,0,1107,1108, - 3,443,221,0,1108,1109,3,409,204,0,1109,166,1,0,0,0,1110,1111,3,417, - 208,0,1111,1112,3,427,213,0,1112,1113,3,427,213,0,1113,1114,3,409, - 204,0,1114,1115,3,435,217,0,1115,168,1,0,0,0,1116,1117,3,417,208, - 0,1117,1118,3,427,213,0,1118,1119,3,437,218,0,1119,1120,3,409,204, - 0,1120,1121,3,435,217,0,1121,1122,3,439,219,0,1122,170,1,0,0,0,1123, - 1124,3,417,208,0,1124,1125,3,427,213,0,1125,1126,3,439,219,0,1126, - 1127,3,409,204,0,1127,1128,3,435,217,0,1128,1129,3,443,221,0,1129, - 1130,3,401,200,0,1130,1131,3,423,211,0,1131,172,1,0,0,0,1132,1133, - 3,417,208,0,1133,1134,3,427,213,0,1134,1135,3,439,219,0,1135,1136, - 3,429,214,0,1136,174,1,0,0,0,1137,1138,3,417,208,0,1138,1139,3,437, - 218,0,1139,176,1,0,0,0,1140,1141,3,417,208,0,1141,1142,3,437,218, - 0,1142,1143,3,523,261,0,1143,1144,3,429,214,0,1144,1145,3,403,201, - 0,1145,1146,3,419,209,0,1146,1147,3,409,204,0,1147,1148,3,405,202, - 0,1148,1149,3,439,219,0,1149,1150,3,523,261,0,1150,1151,3,417,208, - 0,1151,1152,3,407,203,0,1152,178,1,0,0,0,1153,1154,3,419,209,0,1154, - 1155,3,429,214,0,1155,1156,3,417,208,0,1156,1157,3,427,213,0,1157, - 180,1,0,0,0,1158,1159,3,421,210,0,1159,1160,3,409,204,0,1160,1161, - 3,449,224,0,1161,182,1,0,0,0,1162,1163,3,421,210,0,1163,1164,3,417, - 208,0,1164,1165,3,423,211,0,1165,1166,3,423,211,0,1166,184,1,0,0, - 0,1167,1168,3,423,211,0,1168,1169,3,401,200,0,1169,1170,3,437,218, - 0,1170,1171,3,439,219,0,1171,186,1,0,0,0,1172,1173,3,423,211,0,1173, - 1174,3,401,200,0,1174,1175,3,449,224,0,1175,1176,3,429,214,0,1176, - 1177,3,441,220,0,1177,1178,3,439,219,0,1178,188,1,0,0,0,1179,1180, - 3,423,211,0,1180,1181,3,409,204,0,1181,1182,3,401,200,0,1182,1183, - 3,407,203,0,1183,1184,3,417,208,0,1184,1185,3,427,213,0,1185,1186, - 3,413,206,0,1186,190,1,0,0,0,1187,1188,3,423,211,0,1188,1189,3,409, - 204,0,1189,1190,3,411,205,0,1190,1191,3,439,219,0,1191,192,1,0,0, - 0,1192,1193,3,423,211,0,1193,1194,3,417,208,0,1194,1195,3,411,205, - 0,1195,1196,3,409,204,0,1196,1197,3,439,219,0,1197,1198,3,417,208, - 0,1198,1199,3,425,212,0,1199,1200,3,409,204,0,1200,194,1,0,0,0,1201, - 1202,3,423,211,0,1202,1203,3,417,208,0,1203,1204,3,421,210,0,1204, - 1205,3,409,204,0,1205,196,1,0,0,0,1206,1207,3,423,211,0,1207,1208, - 3,417,208,0,1208,1209,3,425,212,0,1209,1210,3,417,208,0,1210,1211, - 3,439,219,0,1211,198,1,0,0,0,1212,1213,3,423,211,0,1213,1214,3,417, - 208,0,1214,1215,3,443,221,0,1215,1216,3,409,204,0,1216,200,1,0,0, - 0,1217,1218,3,423,211,0,1218,1219,3,429,214,0,1219,1220,3,405,202, - 0,1220,1221,3,401,200,0,1221,1222,3,423,211,0,1222,202,1,0,0,0,1223, - 1224,3,423,211,0,1224,1225,3,429,214,0,1225,1226,3,413,206,0,1226, - 1227,3,437,218,0,1227,204,1,0,0,0,1228,1229,3,425,212,0,1229,1230, - 3,401,200,0,1230,1231,3,439,219,0,1231,1232,3,409,204,0,1232,1233, - 3,435,217,0,1233,1234,3,417,208,0,1234,1235,3,401,200,0,1235,1236, - 3,423,211,0,1236,1237,3,417,208,0,1237,1238,3,451,225,0,1238,1239, - 3,409,204,0,1239,206,1,0,0,0,1240,1241,3,425,212,0,1241,1242,3,401, - 200,0,1242,1243,3,439,219,0,1243,1244,3,409,204,0,1244,1245,3,435, - 217,0,1245,1246,3,417,208,0,1246,1247,3,401,200,0,1247,1248,3,423, - 211,0,1248,1249,3,417,208,0,1249,1250,3,451,225,0,1250,1251,3,409, - 204,0,1251,1252,3,407,203,0,1252,208,1,0,0,0,1253,1254,3,425,212, - 0,1254,1255,3,401,200,0,1255,1256,3,447,223,0,1256,210,1,0,0,0,1257, - 1258,3,425,212,0,1258,1259,3,409,204,0,1259,1260,3,435,217,0,1260, - 1261,3,413,206,0,1261,1262,3,409,204,0,1262,1263,3,437,218,0,1263, - 212,1,0,0,0,1264,1265,3,425,212,0,1265,1266,3,417,208,0,1266,1267, - 3,427,213,0,1267,214,1,0,0,0,1268,1269,3,425,212,0,1269,1270,3,417, - 208,0,1270,1271,3,427,213,0,1271,1272,3,441,220,0,1272,1273,3,439, - 219,0,1273,1274,3,409,204,0,1274,216,1,0,0,0,1275,1276,3,425,212, - 0,1276,1277,3,429,214,0,1277,1278,3,407,203,0,1278,1279,3,417,208, - 0,1279,1280,3,411,205,0,1280,1281,3,449,224,0,1281,218,1,0,0,0,1282, - 1283,3,425,212,0,1283,1284,3,429,214,0,1284,1285,3,427,213,0,1285, - 1286,3,439,219,0,1286,1287,3,415,207,0,1287,220,1,0,0,0,1288,1289, - 3,425,212,0,1289,1290,3,429,214,0,1290,1291,3,443,221,0,1291,1292, - 3,409,204,0,1292,222,1,0,0,0,1293,1294,3,425,212,0,1294,1295,3,441, - 220,0,1295,1296,3,439,219,0,1296,1297,3,401,200,0,1297,1298,3,439, - 219,0,1298,1299,3,417,208,0,1299,1300,3,429,214,0,1300,1301,3,427, - 213,0,1301,224,1,0,0,0,1302,1303,3,427,213,0,1303,1304,3,401,200, - 0,1304,1305,3,427,213,0,1305,226,1,0,0,0,1306,1307,3,427,213,0,1307, - 1308,3,429,214,0,1308,228,1,0,0,0,1309,1310,3,427,213,0,1310,1311, - 3,429,214,0,1311,1312,3,439,219,0,1312,230,1,0,0,0,1313,1314,3,427, - 213,0,1314,1315,3,441,220,0,1315,1316,3,423,211,0,1316,1317,3,423, - 211,0,1317,232,1,0,0,0,1318,1319,3,427,213,0,1319,1320,3,441,220, - 0,1320,1321,3,423,211,0,1321,1322,3,423,211,0,1322,1323,3,437,218, - 0,1323,234,1,0,0,0,1324,1325,3,429,214,0,1325,1326,3,411,205,0,1326, - 1327,3,411,205,0,1327,1328,3,437,218,0,1328,1329,3,409,204,0,1329, - 1330,3,439,219,0,1330,236,1,0,0,0,1331,1332,3,429,214,0,1332,1333, - 3,427,213,0,1333,238,1,0,0,0,1334,1335,3,429,214,0,1335,1336,3,431, - 215,0,1336,1337,3,439,219,0,1337,1338,3,417,208,0,1338,1339,3,425, - 212,0,1339,1340,3,417,208,0,1340,1341,3,451,225,0,1341,1342,3,409, - 204,0,1342,240,1,0,0,0,1343,1344,3,429,214,0,1344,1345,3,435,217, - 0,1345,242,1,0,0,0,1346,1347,3,429,214,0,1347,1348,3,435,217,0,1348, - 1349,3,407,203,0,1349,1350,3,409,204,0,1350,1351,3,435,217,0,1351, - 244,1,0,0,0,1352,1353,3,429,214,0,1353,1354,3,441,220,0,1354,1355, - 3,439,219,0,1355,1356,3,409,204,0,1356,1357,3,435,217,0,1357,246, - 1,0,0,0,1358,1359,3,429,214,0,1359,1360,3,441,220,0,1360,1361,3, - 439,219,0,1361,1362,3,411,205,0,1362,1363,3,417,208,0,1363,1364, - 3,423,211,0,1364,1365,3,409,204,0,1365,248,1,0,0,0,1366,1367,3,429, - 214,0,1367,1368,3,443,221,0,1368,1369,3,409,204,0,1369,1370,3,435, - 217,0,1370,250,1,0,0,0,1371,1372,3,431,215,0,1372,1373,3,401,200, - 0,1373,1374,3,435,217,0,1374,1375,3,439,219,0,1375,1376,3,417,208, - 0,1376,1377,3,439,219,0,1377,1378,3,417,208,0,1378,1379,3,429,214, - 0,1379,1380,3,427,213,0,1380,252,1,0,0,0,1381,1382,3,431,215,0,1382, - 1383,3,429,214,0,1383,1384,3,431,215,0,1384,1385,3,441,220,0,1385, - 1386,3,423,211,0,1386,1387,3,401,200,0,1387,1388,3,439,219,0,1388, - 1389,3,409,204,0,1389,254,1,0,0,0,1390,1391,3,431,215,0,1391,1392, - 3,435,217,0,1392,1393,3,409,204,0,1393,1394,3,405,202,0,1394,1395, - 3,409,204,0,1395,1396,3,407,203,0,1396,1397,3,417,208,0,1397,1398, - 3,427,213,0,1398,1399,3,413,206,0,1399,256,1,0,0,0,1400,1401,3,431, - 215,0,1401,1402,3,435,217,0,1402,1403,3,409,204,0,1403,1404,3,445, - 222,0,1404,1405,3,415,207,0,1405,1406,3,409,204,0,1406,1407,3,435, - 217,0,1407,1408,3,409,204,0,1408,258,1,0,0,0,1409,1410,3,431,215, - 0,1410,1411,3,435,217,0,1411,1412,3,417,208,0,1412,1413,3,425,212, - 0,1413,1414,3,401,200,0,1414,1415,3,435,217,0,1415,1416,3,449,224, - 0,1416,260,1,0,0,0,1417,1418,3,431,215,0,1418,1419,3,435,217,0,1419, - 1420,3,429,214,0,1420,1421,3,419,209,0,1421,1422,3,409,204,0,1422, - 1423,3,405,202,0,1423,1424,3,439,219,0,1424,1425,3,417,208,0,1425, - 1426,3,429,214,0,1426,1427,3,427,213,0,1427,262,1,0,0,0,1428,1429, - 3,433,216,0,1429,1430,3,441,220,0,1430,1431,3,401,200,0,1431,1432, - 3,435,217,0,1432,1433,3,439,219,0,1433,1434,3,409,204,0,1434,1435, - 3,435,217,0,1435,264,1,0,0,0,1436,1437,3,435,217,0,1437,1438,3,401, - 200,0,1438,1439,3,427,213,0,1439,1440,3,413,206,0,1440,1441,3,409, - 204,0,1441,266,1,0,0,0,1442,1443,3,435,217,0,1443,1444,3,409,204, - 0,1444,1445,3,423,211,0,1445,1446,3,429,214,0,1446,1447,3,401,200, - 0,1447,1448,3,407,203,0,1448,268,1,0,0,0,1449,1450,3,435,217,0,1450, - 1451,3,409,204,0,1451,1452,3,425,212,0,1452,1453,3,429,214,0,1453, - 1454,3,443,221,0,1454,1455,3,409,204,0,1455,270,1,0,0,0,1456,1457, - 3,435,217,0,1457,1458,3,409,204,0,1458,1459,3,427,213,0,1459,1460, - 3,401,200,0,1460,1461,3,425,212,0,1461,1462,3,409,204,0,1462,272, - 1,0,0,0,1463,1464,3,435,217,0,1464,1465,3,409,204,0,1465,1466,3, - 431,215,0,1466,1467,3,423,211,0,1467,1468,3,401,200,0,1468,1469, - 3,405,202,0,1469,1470,3,409,204,0,1470,274,1,0,0,0,1471,1472,3,435, - 217,0,1472,1473,3,409,204,0,1473,1474,3,431,215,0,1474,1475,3,423, - 211,0,1475,1476,3,417,208,0,1476,1477,3,405,202,0,1477,1478,3,401, - 200,0,1478,276,1,0,0,0,1479,1480,3,435,217,0,1480,1481,3,409,204, - 0,1481,1482,3,431,215,0,1482,1483,3,423,211,0,1483,1484,3,417,208, - 0,1484,1485,3,405,202,0,1485,1486,3,401,200,0,1486,1487,3,439,219, - 0,1487,1488,3,409,204,0,1488,1489,3,407,203,0,1489,278,1,0,0,0,1490, - 1491,3,435,217,0,1491,1492,3,417,208,0,1492,1493,3,413,206,0,1493, - 1494,3,415,207,0,1494,1495,3,439,219,0,1495,280,1,0,0,0,1496,1497, - 3,435,217,0,1497,1498,3,429,214,0,1498,1499,3,423,211,0,1499,1500, - 3,423,211,0,1500,1501,3,441,220,0,1501,1502,3,431,215,0,1502,282, - 1,0,0,0,1503,1504,3,435,217,0,1504,1505,3,429,214,0,1505,1506,3, - 445,222,0,1506,284,1,0,0,0,1507,1508,3,435,217,0,1508,1509,3,429, - 214,0,1509,1510,3,445,222,0,1510,1511,3,437,218,0,1511,286,1,0,0, - 0,1512,1513,3,437,218,0,1513,1514,3,401,200,0,1514,1515,3,425,212, - 0,1515,1516,3,431,215,0,1516,1517,3,423,211,0,1517,1518,3,409,204, - 0,1518,288,1,0,0,0,1519,1520,3,437,218,0,1520,1521,3,409,204,0,1521, - 1522,3,405,202,0,1522,1523,3,429,214,0,1523,1524,3,427,213,0,1524, - 1525,3,407,203,0,1525,290,1,0,0,0,1526,1527,3,437,218,0,1527,1528, - 3,409,204,0,1528,1529,3,423,211,0,1529,1530,3,409,204,0,1530,1531, - 3,405,202,0,1531,1532,3,439,219,0,1532,292,1,0,0,0,1533,1534,3,437, - 218,0,1534,1535,3,409,204,0,1535,1536,3,425,212,0,1536,1537,3,417, - 208,0,1537,294,1,0,0,0,1538,1539,3,437,218,0,1539,1540,3,409,204, - 0,1540,1541,3,427,213,0,1541,1542,3,407,203,0,1542,1543,3,437,218, - 0,1543,296,1,0,0,0,1544,1545,3,437,218,0,1545,1546,3,409,204,0,1546, - 1547,3,439,219,0,1547,298,1,0,0,0,1548,1549,3,437,218,0,1549,1550, - 3,409,204,0,1550,1551,3,439,219,0,1551,1552,3,439,219,0,1552,1553, - 3,417,208,0,1553,1554,3,427,213,0,1554,1555,3,413,206,0,1555,1556, - 3,437,218,0,1556,300,1,0,0,0,1557,1558,3,437,218,0,1558,1559,3,415, - 207,0,1559,1560,3,429,214,0,1560,1561,3,445,222,0,1561,302,1,0,0, - 0,1562,1563,3,437,218,0,1563,1564,3,429,214,0,1564,1565,3,441,220, - 0,1565,1566,3,435,217,0,1566,1567,3,405,202,0,1567,1568,3,409,204, - 0,1568,304,1,0,0,0,1569,1570,3,437,218,0,1570,1571,3,439,219,0,1571, - 1572,3,401,200,0,1572,1573,3,435,217,0,1573,1574,3,439,219,0,1574, - 306,1,0,0,0,1575,1576,3,437,218,0,1576,1577,3,439,219,0,1577,1578, - 3,429,214,0,1578,1579,3,431,215,0,1579,308,1,0,0,0,1580,1581,3,437, - 218,0,1581,1582,3,441,220,0,1582,1583,3,403,201,0,1583,1584,3,437, - 218,0,1584,1585,3,439,219,0,1585,1586,3,435,217,0,1586,1587,3,417, - 208,0,1587,1588,3,427,213,0,1588,1589,3,413,206,0,1589,310,1,0,0, - 0,1590,1591,3,437,218,0,1591,1592,3,449,224,0,1592,1593,3,427,213, - 0,1593,1594,3,405,202,0,1594,312,1,0,0,0,1595,1596,3,437,218,0,1596, - 1597,3,449,224,0,1597,1598,3,427,213,0,1598,1599,3,439,219,0,1599, - 1600,3,401,200,0,1600,1601,3,447,223,0,1601,314,1,0,0,0,1602,1603, - 3,437,218,0,1603,1604,3,449,224,0,1604,1605,3,437,218,0,1605,1606, - 3,439,219,0,1606,1607,3,409,204,0,1607,1608,3,425,212,0,1608,316, - 1,0,0,0,1609,1610,3,439,219,0,1610,1611,3,401,200,0,1611,1612,3, - 403,201,0,1612,1613,3,423,211,0,1613,1614,3,409,204,0,1614,318,1, - 0,0,0,1615,1616,3,439,219,0,1616,1617,3,401,200,0,1617,1618,3,403, - 201,0,1618,1619,3,423,211,0,1619,1620,3,409,204,0,1620,1621,3,437, - 218,0,1621,320,1,0,0,0,1622,1623,3,439,219,0,1623,1624,3,409,204, - 0,1624,1625,3,425,212,0,1625,1626,3,431,215,0,1626,1627,3,429,214, - 0,1627,1628,3,435,217,0,1628,1629,3,401,200,0,1629,1630,3,435,217, - 0,1630,1631,3,449,224,0,1631,322,1,0,0,0,1632,1633,3,439,219,0,1633, - 1634,3,409,204,0,1634,1635,3,437,218,0,1635,1636,3,439,219,0,1636, - 324,1,0,0,0,1637,1638,3,439,219,0,1638,1639,3,415,207,0,1639,1640, - 3,409,204,0,1640,1641,3,427,213,0,1641,326,1,0,0,0,1642,1643,3,439, - 219,0,1643,1644,3,417,208,0,1644,1645,3,409,204,0,1645,1646,3,437, - 218,0,1646,328,1,0,0,0,1647,1648,3,439,219,0,1648,1649,3,417,208, - 0,1649,1650,3,425,212,0,1650,1651,3,409,204,0,1651,1652,3,429,214, - 0,1652,1653,3,441,220,0,1653,1654,3,439,219,0,1654,330,1,0,0,0,1655, - 1656,3,439,219,0,1656,1657,3,417,208,0,1657,1658,3,425,212,0,1658, - 1659,3,409,204,0,1659,1660,3,437,218,0,1660,1661,3,439,219,0,1661, - 1662,3,401,200,0,1662,1663,3,425,212,0,1663,1664,3,431,215,0,1664, - 332,1,0,0,0,1665,1666,3,439,219,0,1666,1667,3,429,214,0,1667,334, - 1,0,0,0,1668,1669,3,439,219,0,1669,1670,3,429,214,0,1670,1671,3, - 431,215,0,1671,336,1,0,0,0,1672,1673,3,439,219,0,1673,1674,3,429, - 214,0,1674,1675,3,439,219,0,1675,1676,3,401,200,0,1676,1677,3,423, - 211,0,1677,1678,3,437,218,0,1678,338,1,0,0,0,1679,1680,3,439,219, - 0,1680,1681,3,435,217,0,1681,1682,3,401,200,0,1682,1683,3,417,208, - 0,1683,1684,3,423,211,0,1684,1685,3,417,208,0,1685,1686,3,427,213, - 0,1686,1687,3,413,206,0,1687,340,1,0,0,0,1688,1689,3,439,219,0,1689, - 1690,3,435,217,0,1690,1691,3,417,208,0,1691,1692,3,425,212,0,1692, - 342,1,0,0,0,1693,1694,3,439,219,0,1694,1695,3,435,217,0,1695,1696, - 3,441,220,0,1696,1697,3,427,213,0,1697,1698,3,405,202,0,1698,1699, - 3,401,200,0,1699,1700,3,439,219,0,1700,1701,3,409,204,0,1701,344, - 1,0,0,0,1702,1703,3,439,219,0,1703,1704,3,439,219,0,1704,1705,3, - 423,211,0,1705,346,1,0,0,0,1706,1707,3,439,219,0,1707,1708,3,449, - 224,0,1708,1709,3,431,215,0,1709,1710,3,409,204,0,1710,348,1,0,0, - 0,1711,1712,3,441,220,0,1712,1713,3,427,213,0,1713,1714,3,403,201, - 0,1714,1715,3,429,214,0,1715,1716,3,441,220,0,1716,1717,3,427,213, - 0,1717,1718,3,407,203,0,1718,1719,3,409,204,0,1719,1720,3,407,203, - 0,1720,350,1,0,0,0,1721,1722,3,441,220,0,1722,1723,3,427,213,0,1723, - 1724,3,417,208,0,1724,1725,3,429,214,0,1725,1726,3,427,213,0,1726, - 352,1,0,0,0,1727,1728,3,441,220,0,1728,1729,3,431,215,0,1729,1730, - 3,407,203,0,1730,1731,3,401,200,0,1731,1732,3,439,219,0,1732,1733, - 3,409,204,0,1733,354,1,0,0,0,1734,1735,3,441,220,0,1735,1736,3,437, - 218,0,1736,1737,3,409,204,0,1737,356,1,0,0,0,1738,1739,3,441,220, - 0,1739,1740,3,437,218,0,1740,1741,3,417,208,0,1741,1742,3,427,213, - 0,1742,1743,3,413,206,0,1743,358,1,0,0,0,1744,1745,3,441,220,0,1745, - 1746,3,441,220,0,1746,1747,3,417,208,0,1747,1748,3,407,203,0,1748, - 360,1,0,0,0,1749,1750,3,443,221,0,1750,1751,3,401,200,0,1751,1752, - 3,423,211,0,1752,1753,3,441,220,0,1753,1754,3,409,204,0,1754,1755, - 3,437,218,0,1755,362,1,0,0,0,1756,1757,3,443,221,0,1757,1758,3,417, - 208,0,1758,1759,3,409,204,0,1759,1760,3,445,222,0,1760,364,1,0,0, - 0,1761,1762,3,443,221,0,1762,1763,3,429,214,0,1763,1764,3,423,211, - 0,1764,1765,3,441,220,0,1765,1766,3,425,212,0,1766,1767,3,409,204, - 0,1767,366,1,0,0,0,1768,1769,3,445,222,0,1769,1770,3,401,200,0,1770, - 1771,3,439,219,0,1771,1772,3,405,202,0,1772,1773,3,415,207,0,1773, - 368,1,0,0,0,1774,1775,3,445,222,0,1775,1776,3,409,204,0,1776,1777, - 3,409,204,0,1777,1778,3,421,210,0,1778,370,1,0,0,0,1779,1780,3,445, - 222,0,1780,1781,3,415,207,0,1781,1782,3,409,204,0,1782,1783,3,427, - 213,0,1783,372,1,0,0,0,1784,1785,3,445,222,0,1785,1786,3,415,207, - 0,1786,1787,3,409,204,0,1787,1788,3,435,217,0,1788,1789,3,409,204, - 0,1789,374,1,0,0,0,1790,1791,3,445,222,0,1791,1792,3,417,208,0,1792, - 1793,3,427,213,0,1793,1794,3,407,203,0,1794,1795,3,429,214,0,1795, - 1796,3,445,222,0,1796,376,1,0,0,0,1797,1798,3,445,222,0,1798,1799, - 3,417,208,0,1799,1800,3,439,219,0,1800,1801,3,415,207,0,1801,378, - 1,0,0,0,1802,1803,3,449,224,0,1803,1804,3,409,204,0,1804,1805,3, - 401,200,0,1805,1806,3,435,217,0,1806,1813,1,0,0,0,1807,1808,3,449, - 224,0,1808,1809,3,449,224,0,1809,1810,3,449,224,0,1810,1811,3,449, - 224,0,1811,1813,1,0,0,0,1812,1802,1,0,0,0,1812,1807,1,0,0,0,1813, - 380,1,0,0,0,1814,1815,5,102,0,0,1815,1816,5,97,0,0,1816,1817,5,108, - 0,0,1817,1818,5,115,0,0,1818,1819,5,101,0,0,1819,382,1,0,0,0,1820, - 1821,5,116,0,0,1821,1822,5,114,0,0,1822,1823,5,117,0,0,1823,1824, - 5,101,0,0,1824,384,1,0,0,0,1825,1826,3,467,233,0,1826,1827,3,403, - 201,0,1827,1856,1,0,0,0,1828,1829,3,467,233,0,1829,1830,3,411,205, - 0,1830,1856,1,0,0,0,1831,1832,3,467,233,0,1832,1833,3,435,217,0, - 1833,1856,1,0,0,0,1834,1835,3,467,233,0,1835,1836,3,427,213,0,1836, - 1856,1,0,0,0,1837,1838,3,467,233,0,1838,1839,3,439,219,0,1839,1856, - 1,0,0,0,1840,1841,3,467,233,0,1841,1842,5,48,0,0,1842,1856,1,0,0, - 0,1843,1844,3,467,233,0,1844,1845,3,401,200,0,1845,1856,1,0,0,0, - 1846,1847,3,467,233,0,1847,1848,3,443,221,0,1848,1856,1,0,0,0,1849, - 1850,3,467,233,0,1850,1851,3,467,233,0,1851,1856,1,0,0,0,1852,1853, - 3,467,233,0,1853,1854,3,511,255,0,1854,1856,1,0,0,0,1855,1825,1, - 0,0,0,1855,1828,1,0,0,0,1855,1831,1,0,0,0,1855,1834,1,0,0,0,1855, - 1837,1,0,0,0,1855,1840,1,0,0,0,1855,1843,1,0,0,0,1855,1846,1,0,0, - 0,1855,1849,1,0,0,0,1855,1852,1,0,0,0,1856,386,1,0,0,0,1857,1861, - 3,453,226,0,1858,1861,3,523,261,0,1859,1861,3,477,238,0,1860,1857, - 1,0,0,0,1860,1858,1,0,0,0,1860,1859,1,0,0,0,1861,1868,1,0,0,0,1862, - 1867,3,453,226,0,1863,1867,3,523,261,0,1864,1867,3,457,228,0,1865, - 1867,3,477,238,0,1866,1862,1,0,0,0,1866,1863,1,0,0,0,1866,1864,1, - 0,0,0,1866,1865,1,0,0,0,1867,1870,1,0,0,0,1868,1866,1,0,0,0,1868, - 1869,1,0,0,0,1869,1898,1,0,0,0,1870,1868,1,0,0,0,1871,1879,3,465, - 232,0,1872,1878,8,0,0,0,1873,1878,3,385,192,0,1874,1875,3,465,232, - 0,1875,1876,3,465,232,0,1876,1878,1,0,0,0,1877,1872,1,0,0,0,1877, - 1873,1,0,0,0,1877,1874,1,0,0,0,1878,1881,1,0,0,0,1879,1877,1,0,0, - 0,1879,1880,1,0,0,0,1880,1882,1,0,0,0,1881,1879,1,0,0,0,1882,1883, - 3,465,232,0,1883,1898,1,0,0,0,1884,1892,3,509,254,0,1885,1891,8, - 1,0,0,1886,1891,3,385,192,0,1887,1888,3,509,254,0,1888,1889,3,509, - 254,0,1889,1891,1,0,0,0,1890,1885,1,0,0,0,1890,1886,1,0,0,0,1890, - 1887,1,0,0,0,1891,1894,1,0,0,0,1892,1890,1,0,0,0,1892,1893,1,0,0, - 0,1893,1895,1,0,0,0,1894,1892,1,0,0,0,1895,1896,3,509,254,0,1896, - 1898,1,0,0,0,1897,1860,1,0,0,0,1897,1871,1,0,0,0,1897,1884,1,0,0, - 0,1898,388,1,0,0,0,1899,1900,3,395,197,0,1900,1904,3,479,239,0,1901, - 1903,3,459,229,0,1902,1901,1,0,0,0,1903,1906,1,0,0,0,1904,1902,1, - 0,0,0,1904,1905,1,0,0,0,1905,1909,1,0,0,0,1906,1904,1,0,0,0,1907, - 1910,3,431,215,0,1908,1910,3,409,204,0,1909,1907,1,0,0,0,1909,1908, - 1,0,0,0,1910,1913,1,0,0,0,1911,1914,3,505,252,0,1912,1914,3,475, - 237,0,1913,1911,1,0,0,0,1913,1912,1,0,0,0,1913,1914,1,0,0,0,1914, - 1916,1,0,0,0,1915,1917,3,457,228,0,1916,1915,1,0,0,0,1917,1918,1, - 0,0,0,1918,1916,1,0,0,0,1918,1919,1,0,0,0,1919,1976,1,0,0,0,1920, - 1923,3,395,197,0,1921,1924,3,431,215,0,1922,1924,3,409,204,0,1923, - 1921,1,0,0,0,1923,1922,1,0,0,0,1924,1927,1,0,0,0,1925,1928,3,505, - 252,0,1926,1928,3,475,237,0,1927,1925,1,0,0,0,1927,1926,1,0,0,0, - 1927,1928,1,0,0,0,1928,1930,1,0,0,0,1929,1931,3,457,228,0,1930,1929, - 1,0,0,0,1931,1932,1,0,0,0,1932,1930,1,0,0,0,1932,1933,1,0,0,0,1933, - 1976,1,0,0,0,1934,1935,3,393,196,0,1935,1939,3,479,239,0,1936,1938, - 3,457,228,0,1937,1936,1,0,0,0,1938,1941,1,0,0,0,1939,1937,1,0,0, - 0,1939,1940,1,0,0,0,1940,1942,1,0,0,0,1941,1939,1,0,0,0,1942,1945, - 3,409,204,0,1943,1946,3,505,252,0,1944,1946,3,475,237,0,1945,1943, - 1,0,0,0,1945,1944,1,0,0,0,1945,1946,1,0,0,0,1946,1948,1,0,0,0,1947, - 1949,3,457,228,0,1948,1947,1,0,0,0,1949,1950,1,0,0,0,1950,1948,1, - 0,0,0,1950,1951,1,0,0,0,1951,1976,1,0,0,0,1952,1953,3,479,239,0, - 1953,1954,3,393,196,0,1954,1957,3,409,204,0,1955,1958,3,505,252, - 0,1956,1958,3,475,237,0,1957,1955,1,0,0,0,1957,1956,1,0,0,0,1957, - 1958,1,0,0,0,1958,1960,1,0,0,0,1959,1961,3,457,228,0,1960,1959,1, - 0,0,0,1961,1962,1,0,0,0,1962,1960,1,0,0,0,1962,1963,1,0,0,0,1963, - 1976,1,0,0,0,1964,1965,3,393,196,0,1965,1968,3,409,204,0,1966,1969, - 3,505,252,0,1967,1969,3,475,237,0,1968,1966,1,0,0,0,1968,1967,1, - 0,0,0,1968,1969,1,0,0,0,1969,1971,1,0,0,0,1970,1972,3,457,228,0, - 1971,1970,1,0,0,0,1972,1973,1,0,0,0,1973,1971,1,0,0,0,1973,1974, - 1,0,0,0,1974,1976,1,0,0,0,1975,1899,1,0,0,0,1975,1920,1,0,0,0,1975, - 1934,1,0,0,0,1975,1952,1,0,0,0,1975,1964,1,0,0,0,1976,390,1,0,0, - 0,1977,1979,5,48,0,0,1978,1980,3,455,227,0,1979,1978,1,0,0,0,1980, - 1981,1,0,0,0,1981,1979,1,0,0,0,1981,1982,1,0,0,0,1982,392,1,0,0, - 0,1983,1985,3,457,228,0,1984,1983,1,0,0,0,1985,1986,1,0,0,0,1986, - 1984,1,0,0,0,1986,1987,1,0,0,0,1987,394,1,0,0,0,1988,1989,5,48,0, - 0,1989,1991,3,447,223,0,1990,1992,3,459,229,0,1991,1990,1,0,0,0, - 1992,1993,1,0,0,0,1993,1991,1,0,0,0,1993,1994,1,0,0,0,1994,396,1, - 0,0,0,1995,2003,3,511,255,0,1996,2002,8,2,0,0,1997,2002,3,385,192, - 0,1998,1999,3,511,255,0,1999,2000,3,511,255,0,2000,2002,1,0,0,0, - 2001,1996,1,0,0,0,2001,1997,1,0,0,0,2001,1998,1,0,0,0,2002,2005, - 1,0,0,0,2003,2001,1,0,0,0,2003,2004,1,0,0,0,2004,2006,1,0,0,0,2005, - 2003,1,0,0,0,2006,2007,3,511,255,0,2007,398,1,0,0,0,2008,2016,3, - 491,245,0,2009,2015,8,3,0,0,2010,2015,3,385,192,0,2011,2012,3,491, - 245,0,2012,2013,3,491,245,0,2013,2015,1,0,0,0,2014,2009,1,0,0,0, - 2014,2010,1,0,0,0,2014,2011,1,0,0,0,2015,2018,1,0,0,0,2016,2014, - 1,0,0,0,2016,2017,1,0,0,0,2017,2019,1,0,0,0,2018,2016,1,0,0,0,2019, - 2020,3,513,256,0,2020,400,1,0,0,0,2021,2022,7,4,0,0,2022,402,1,0, - 0,0,2023,2024,7,5,0,0,2024,404,1,0,0,0,2025,2026,7,6,0,0,2026,406, - 1,0,0,0,2027,2028,7,7,0,0,2028,408,1,0,0,0,2029,2030,7,8,0,0,2030, - 410,1,0,0,0,2031,2032,7,9,0,0,2032,412,1,0,0,0,2033,2034,7,10,0, - 0,2034,414,1,0,0,0,2035,2036,7,11,0,0,2036,416,1,0,0,0,2037,2038, - 7,12,0,0,2038,418,1,0,0,0,2039,2040,7,13,0,0,2040,420,1,0,0,0,2041, - 2042,7,14,0,0,2042,422,1,0,0,0,2043,2044,7,15,0,0,2044,424,1,0,0, - 0,2045,2046,7,16,0,0,2046,426,1,0,0,0,2047,2048,7,17,0,0,2048,428, - 1,0,0,0,2049,2050,7,18,0,0,2050,430,1,0,0,0,2051,2052,7,19,0,0,2052, - 432,1,0,0,0,2053,2054,7,20,0,0,2054,434,1,0,0,0,2055,2056,7,21,0, - 0,2056,436,1,0,0,0,2057,2058,7,22,0,0,2058,438,1,0,0,0,2059,2060, - 7,23,0,0,2060,440,1,0,0,0,2061,2062,7,24,0,0,2062,442,1,0,0,0,2063, - 2064,7,25,0,0,2064,444,1,0,0,0,2065,2066,7,26,0,0,2066,446,1,0,0, - 0,2067,2068,7,27,0,0,2068,448,1,0,0,0,2069,2070,7,28,0,0,2070,450, - 1,0,0,0,2071,2072,7,29,0,0,2072,452,1,0,0,0,2073,2074,7,30,0,0,2074, - 454,1,0,0,0,2075,2076,7,31,0,0,2076,456,1,0,0,0,2077,2078,7,32,0, - 0,2078,458,1,0,0,0,2079,2080,7,33,0,0,2080,460,1,0,0,0,2081,2082, - 5,45,0,0,2082,2083,5,62,0,0,2083,462,1,0,0,0,2084,2085,5,42,0,0, - 2085,464,1,0,0,0,2086,2087,5,96,0,0,2087,466,1,0,0,0,2088,2089,5, - 92,0,0,2089,468,1,0,0,0,2090,2091,5,58,0,0,2091,470,1,0,0,0,2092, - 2093,5,44,0,0,2093,472,1,0,0,0,2094,2095,5,124,0,0,2095,2096,5,124, - 0,0,2096,474,1,0,0,0,2097,2098,5,45,0,0,2098,476,1,0,0,0,2099,2100, - 5,36,0,0,2100,478,1,0,0,0,2101,2102,5,46,0,0,2102,480,1,0,0,0,2103, - 2104,5,61,0,0,2104,2105,5,61,0,0,2105,482,1,0,0,0,2106,2107,5,61, - 0,0,2107,484,1,0,0,0,2108,2109,5,62,0,0,2109,2110,5,61,0,0,2110, - 486,1,0,0,0,2111,2112,5,62,0,0,2112,488,1,0,0,0,2113,2114,5,35,0, - 0,2114,490,1,0,0,0,2115,2116,5,123,0,0,2116,492,1,0,0,0,2117,2118, - 5,91,0,0,2118,494,1,0,0,0,2119,2120,5,40,0,0,2120,496,1,0,0,0,2121, - 2122,5,60,0,0,2122,2123,5,61,0,0,2123,498,1,0,0,0,2124,2125,5,60, - 0,0,2125,500,1,0,0,0,2126,2127,5,33,0,0,2127,2131,5,61,0,0,2128, - 2129,5,60,0,0,2129,2131,5,62,0,0,2130,2126,1,0,0,0,2130,2128,1,0, - 0,0,2131,502,1,0,0,0,2132,2133,5,37,0,0,2133,504,1,0,0,0,2134,2135, - 5,43,0,0,2135,506,1,0,0,0,2136,2137,5,63,0,0,2137,508,1,0,0,0,2138, - 2139,5,34,0,0,2139,510,1,0,0,0,2140,2141,5,39,0,0,2141,512,1,0,0, - 0,2142,2143,5,125,0,0,2143,514,1,0,0,0,2144,2145,5,93,0,0,2145,516, - 1,0,0,0,2146,2147,5,41,0,0,2147,518,1,0,0,0,2148,2149,5,59,0,0,2149, - 520,1,0,0,0,2150,2151,5,47,0,0,2151,522,1,0,0,0,2152,2153,5,95,0, - 0,2153,524,1,0,0,0,2154,2155,5,47,0,0,2155,2156,5,42,0,0,2156,2160, - 1,0,0,0,2157,2159,9,0,0,0,2158,2157,1,0,0,0,2159,2162,1,0,0,0,2160, - 2161,1,0,0,0,2160,2158,1,0,0,0,2161,2163,1,0,0,0,2162,2160,1,0,0, - 0,2163,2164,5,42,0,0,2164,2165,5,47,0,0,2165,2166,1,0,0,0,2166,2167, - 6,262,0,0,2167,526,1,0,0,0,2168,2169,5,45,0,0,2169,2170,5,45,0,0, - 2170,2174,1,0,0,0,2171,2173,8,34,0,0,2172,2171,1,0,0,0,2173,2176, - 1,0,0,0,2174,2172,1,0,0,0,2174,2175,1,0,0,0,2175,2178,1,0,0,0,2176, - 2174,1,0,0,0,2177,2179,7,35,0,0,2178,2177,1,0,0,0,2179,2180,1,0, - 0,0,2180,2181,6,263,0,0,2181,528,1,0,0,0,2182,2183,7,36,0,0,2183, - 2184,1,0,0,0,2184,2185,6,264,1,0,2185,530,1,0,0,0,39,0,593,1098, - 1812,1855,1860,1866,1868,1877,1879,1890,1892,1897,1904,1909,1913, - 1918,1923,1927,1932,1939,1945,1950,1957,1962,1968,1973,1975,1981, - 1986,1993,2001,2003,2014,2016,2130,2160,2174,2178,2,6,0,0,0,1,0 + 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,3,192,1868, + 8,192,1,193,1,193,1,193,3,193,1873,8,193,1,193,1,193,1,193,1,193, + 5,193,1879,8,193,10,193,12,193,1882,9,193,1,193,1,193,1,193,1,193, + 1,193,1,193,5,193,1890,8,193,10,193,12,193,1893,9,193,1,193,1,193, + 1,193,1,193,1,193,1,193,1,193,1,193,5,193,1903,8,193,10,193,12,193, + 1906,9,193,1,193,1,193,3,193,1910,8,193,1,194,1,194,1,194,5,194, + 1915,8,194,10,194,12,194,1918,9,194,1,194,1,194,3,194,1922,8,194, + 1,194,1,194,3,194,1926,8,194,1,194,4,194,1929,8,194,11,194,12,194, + 1930,1,194,1,194,1,194,3,194,1936,8,194,1,194,1,194,3,194,1940,8, + 194,1,194,4,194,1943,8,194,11,194,12,194,1944,1,194,1,194,1,194, + 5,194,1950,8,194,10,194,12,194,1953,9,194,1,194,1,194,1,194,3,194, + 1958,8,194,1,194,4,194,1961,8,194,11,194,12,194,1962,1,194,1,194, + 1,194,1,194,1,194,3,194,1970,8,194,1,194,4,194,1973,8,194,11,194, + 12,194,1974,1,194,1,194,1,194,1,194,3,194,1981,8,194,1,194,4,194, + 1984,8,194,11,194,12,194,1985,3,194,1988,8,194,1,195,1,195,4,195, + 1992,8,195,11,195,12,195,1993,1,196,4,196,1997,8,196,11,196,12,196, + 1998,1,197,1,197,1,197,4,197,2004,8,197,11,197,12,197,2005,1,198, + 1,198,1,198,1,198,1,198,1,198,5,198,2014,8,198,10,198,12,198,2017, + 9,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199,5,199,2027, + 8,199,10,199,12,199,2030,9,199,1,199,1,199,1,200,1,200,1,201,1,201, + 1,202,1,202,1,203,1,203,1,204,1,204,1,205,1,205,1,206,1,206,1,207, + 1,207,1,208,1,208,1,209,1,209,1,210,1,210,1,211,1,211,1,212,1,212, + 1,213,1,213,1,214,1,214,1,215,1,215,1,216,1,216,1,217,1,217,1,218, + 1,218,1,219,1,219,1,220,1,220,1,221,1,221,1,222,1,222,1,223,1,223, + 1,224,1,224,1,225,1,225,1,226,1,226,1,227,1,227,1,228,1,228,1,229, + 1,229,1,230,1,230,1,230,1,231,1,231,1,232,1,232,1,233,1,233,1,234, + 1,234,1,235,1,235,1,236,1,236,1,236,1,237,1,237,1,238,1,238,1,239, + 1,239,1,240,1,240,1,240,1,241,1,241,1,242,1,242,1,242,1,243,1,243, + 1,244,1,244,1,245,1,245,1,245,1,246,1,246,1,246,1,246,1,247,1,247, + 1,248,1,248,1,249,1,249,1,250,1,250,1,250,1,251,1,251,1,252,1,252, + 1,252,1,252,3,252,2150,8,252,1,253,1,253,1,253,1,253,1,254,1,254, + 1,254,1,255,1,255,1,256,1,256,1,257,1,257,1,258,1,258,1,259,1,259, + 1,260,1,260,1,261,1,261,1,261,1,262,1,262,1,263,1,263,1,264,1,264, + 1,265,1,265,1,266,1,266,1,267,1,267,1,268,1,268,1,268,1,268,5,268, + 2190,8,268,10,268,12,268,2193,9,268,1,268,1,268,1,268,1,268,1,268, + 1,269,1,269,1,269,1,269,5,269,2204,8,269,10,269,12,269,2207,9,269, + 1,269,3,269,2210,8,269,1,269,1,269,1,270,1,270,1,270,1,270,1,2191, + 0,271,1,1,3,2,5,3,7,4,9,5,11,6,13,7,15,8,17,9,19,10,21,11,23,12, + 25,13,27,14,29,15,31,16,33,17,35,18,37,19,39,20,41,21,43,22,45,23, + 47,24,49,25,51,26,53,27,55,28,57,29,59,30,61,31,63,32,65,33,67,34, + 69,35,71,36,73,37,75,38,77,39,79,40,81,41,83,42,85,43,87,44,89,45, + 91,46,93,47,95,48,97,49,99,50,101,51,103,52,105,53,107,54,109,55, + 111,56,113,57,115,58,117,59,119,60,121,61,123,62,125,63,127,64,129, + 65,131,66,133,67,135,68,137,69,139,70,141,71,143,72,145,73,147,74, + 149,75,151,76,153,77,155,78,157,79,159,80,161,81,163,82,165,83,167, + 84,169,85,171,86,173,87,175,88,177,89,179,90,181,91,183,92,185,93, + 187,94,189,95,191,96,193,97,195,98,197,99,199,100,201,101,203,102, + 205,103,207,104,209,105,211,106,213,107,215,108,217,109,219,110, + 221,111,223,112,225,113,227,114,229,115,231,116,233,117,235,118, + 237,119,239,120,241,121,243,122,245,123,247,124,249,125,251,126, + 253,127,255,128,257,129,259,130,261,131,263,132,265,133,267,134, + 269,135,271,136,273,137,275,138,277,139,279,140,281,141,283,142, + 285,143,287,144,289,145,291,146,293,147,295,148,297,149,299,150, + 301,151,303,152,305,153,307,154,309,155,311,156,313,157,315,158, + 317,159,319,160,321,161,323,162,325,163,327,164,329,165,331,166, + 333,167,335,168,337,169,339,170,341,171,343,172,345,173,347,174, + 349,175,351,176,353,177,355,178,357,179,359,180,361,181,363,182, + 365,183,367,184,369,185,371,186,373,187,375,188,377,189,379,190, + 381,191,383,192,385,193,387,194,389,195,391,196,393,197,395,198, + 397,199,399,200,401,0,403,0,405,0,407,0,409,0,411,0,413,0,415,0, + 417,0,419,0,421,0,423,0,425,0,427,0,429,0,431,0,433,0,435,0,437, + 0,439,0,441,0,443,0,445,0,447,0,449,0,451,0,453,0,455,0,457,0,459, + 0,461,201,463,202,465,203,467,204,469,205,471,206,473,207,475,208, + 477,209,479,210,481,211,483,212,485,213,487,214,489,215,491,216, + 493,217,495,218,497,219,499,220,501,221,503,222,505,223,507,224, + 509,225,511,226,513,227,515,228,517,229,519,230,521,231,523,232, + 525,233,527,234,529,235,531,236,533,237,535,238,537,239,539,240, + 541,241,1,0,37,2,0,92,92,96,96,2,0,34,34,92,92,2,0,39,39,92,92,2, + 0,92,92,125,125,2,0,65,65,97,97,2,0,66,66,98,98,2,0,67,67,99,99, + 2,0,68,68,100,100,2,0,69,69,101,101,2,0,70,70,102,102,2,0,71,71, + 103,103,2,0,72,72,104,104,2,0,73,73,105,105,2,0,74,74,106,106,2, + 0,75,75,107,107,2,0,76,76,108,108,2,0,77,77,109,109,2,0,78,78,110, + 110,2,0,79,79,111,111,2,0,80,80,112,112,2,0,81,81,113,113,2,0,82, + 82,114,114,2,0,83,83,115,115,2,0,84,84,116,116,2,0,85,85,117,117, + 2,0,86,86,118,118,2,0,87,87,119,119,2,0,88,88,120,120,2,0,89,89, + 121,121,2,0,90,90,122,122,2,0,65,90,97,122,1,0,48,55,1,0,48,57,3, + 0,48,57,65,70,97,102,2,0,10,10,13,13,2,1,10,10,13,13,2,0,9,13,32, + 32,2247,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0, + 0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,0, + 0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0, + 0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0, + 0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0, + 0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0, + 0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0, + 0,0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0, + 0,0,0,81,1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0, + 0,0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0, + 0,0,0,101,1,0,0,0,0,103,1,0,0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109, + 1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0, + 0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125,1,0,0,0,0,127,1, + 0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0,135,1,0,0,0,0, + 137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,0,145,1,0, + 0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155, + 1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0, + 0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1, + 0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0, + 183,1,0,0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0, + 0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201, + 1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0, + 0,211,1,0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1,0,0,0,0,219,1, + 0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0, + 229,1,0,0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0, + 0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247, + 1,0,0,0,0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0, + 0,257,1,0,0,0,0,259,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1, + 0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0, + 275,1,0,0,0,0,277,1,0,0,0,0,279,1,0,0,0,0,281,1,0,0,0,0,283,1,0, + 0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289,1,0,0,0,0,291,1,0,0,0,0,293, + 1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0,0,0,0,301,1,0,0,0, + 0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309,1,0,0,0,0,311,1, + 0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0,0,319,1,0,0,0,0, + 321,1,0,0,0,0,323,1,0,0,0,0,325,1,0,0,0,0,327,1,0,0,0,0,329,1,0, + 0,0,0,331,1,0,0,0,0,333,1,0,0,0,0,335,1,0,0,0,0,337,1,0,0,0,0,339, + 1,0,0,0,0,341,1,0,0,0,0,343,1,0,0,0,0,345,1,0,0,0,0,347,1,0,0,0, + 0,349,1,0,0,0,0,351,1,0,0,0,0,353,1,0,0,0,0,355,1,0,0,0,0,357,1, + 0,0,0,0,359,1,0,0,0,0,361,1,0,0,0,0,363,1,0,0,0,0,365,1,0,0,0,0, + 367,1,0,0,0,0,369,1,0,0,0,0,371,1,0,0,0,0,373,1,0,0,0,0,375,1,0, + 0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381,1,0,0,0,0,383,1,0,0,0,0,385, + 1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0,0,391,1,0,0,0,0,393,1,0,0,0, + 0,395,1,0,0,0,0,397,1,0,0,0,0,399,1,0,0,0,0,461,1,0,0,0,0,463,1, + 0,0,0,0,465,1,0,0,0,0,467,1,0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0, + 473,1,0,0,0,0,475,1,0,0,0,0,477,1,0,0,0,0,479,1,0,0,0,0,481,1,0, + 0,0,0,483,1,0,0,0,0,485,1,0,0,0,0,487,1,0,0,0,0,489,1,0,0,0,0,491, + 1,0,0,0,0,493,1,0,0,0,0,495,1,0,0,0,0,497,1,0,0,0,0,499,1,0,0,0, + 0,501,1,0,0,0,0,503,1,0,0,0,0,505,1,0,0,0,0,507,1,0,0,0,0,509,1, + 0,0,0,0,511,1,0,0,0,0,513,1,0,0,0,0,515,1,0,0,0,0,517,1,0,0,0,0, + 519,1,0,0,0,0,521,1,0,0,0,0,523,1,0,0,0,0,525,1,0,0,0,0,527,1,0, + 0,0,0,529,1,0,0,0,0,531,1,0,0,0,0,533,1,0,0,0,0,535,1,0,0,0,0,537, + 1,0,0,0,0,539,1,0,0,0,0,541,1,0,0,0,1,543,1,0,0,0,3,547,1,0,0,0, + 5,553,1,0,0,0,7,559,1,0,0,0,9,563,1,0,0,0,11,569,1,0,0,0,13,573, + 1,0,0,0,15,578,1,0,0,0,17,582,1,0,0,0,19,588,1,0,0,0,21,605,1,0, + 0,0,23,607,1,0,0,0,25,612,1,0,0,0,27,616,1,0,0,0,29,622,1,0,0,0, + 31,629,1,0,0,0,33,637,1,0,0,0,35,642,1,0,0,0,37,645,1,0,0,0,39,650, + 1,0,0,0,41,655,1,0,0,0,43,661,1,0,0,0,45,667,1,0,0,0,47,675,1,0, + 0,0,49,681,1,0,0,0,51,688,1,0,0,0,53,696,1,0,0,0,55,703,1,0,0,0, + 57,711,1,0,0,0,59,722,1,0,0,0,61,729,1,0,0,0,63,735,1,0,0,0,65,740, + 1,0,0,0,67,748,1,0,0,0,69,757,1,0,0,0,71,767,1,0,0,0,73,772,1,0, + 0,0,75,776,1,0,0,0,77,788,1,0,0,0,79,796,1,0,0,0,81,802,1,0,0,0, + 83,809,1,0,0,0,85,814,1,0,0,0,87,825,1,0,0,0,89,834,1,0,0,0,91,841, + 1,0,0,0,93,854,1,0,0,0,95,865,1,0,0,0,97,870,1,0,0,0,99,879,1,0, + 0,0,101,891,1,0,0,0,103,896,1,0,0,0,105,901,1,0,0,0,107,905,1,0, + 0,0,109,912,1,0,0,0,111,919,1,0,0,0,113,926,1,0,0,0,115,934,1,0, + 0,0,117,945,1,0,0,0,119,953,1,0,0,0,121,961,1,0,0,0,123,967,1,0, + 0,0,125,973,1,0,0,0,127,979,1,0,0,0,129,989,1,0,0,0,131,993,1,0, + 0,0,133,1000,1,0,0,0,135,1007,1,0,0,0,137,1012,1,0,0,0,139,1017, + 1,0,0,0,141,1026,1,0,0,0,143,1033,1,0,0,0,145,1045,1,0,0,0,147,1051, + 1,0,0,0,149,1058,1,0,0,0,151,1071,1,0,0,0,153,1076,1,0,0,0,155,1079, + 1,0,0,0,157,1082,1,0,0,0,159,1088,1,0,0,0,161,1091,1,0,0,0,163,1110, + 1,0,0,0,165,1112,1,0,0,0,167,1122,1,0,0,0,169,1128,1,0,0,0,171,1135, + 1,0,0,0,173,1144,1,0,0,0,175,1149,1,0,0,0,177,1152,1,0,0,0,179,1165, + 1,0,0,0,181,1170,1,0,0,0,183,1174,1,0,0,0,185,1179,1,0,0,0,187,1184, + 1,0,0,0,189,1191,1,0,0,0,191,1199,1,0,0,0,193,1204,1,0,0,0,195,1213, + 1,0,0,0,197,1218,1,0,0,0,199,1224,1,0,0,0,201,1229,1,0,0,0,203,1235, + 1,0,0,0,205,1240,1,0,0,0,207,1252,1,0,0,0,209,1265,1,0,0,0,211,1269, + 1,0,0,0,213,1276,1,0,0,0,215,1280,1,0,0,0,217,1287,1,0,0,0,219,1294, + 1,0,0,0,221,1300,1,0,0,0,223,1305,1,0,0,0,225,1314,1,0,0,0,227,1318, + 1,0,0,0,229,1321,1,0,0,0,231,1325,1,0,0,0,233,1330,1,0,0,0,235,1336, + 1,0,0,0,237,1343,1,0,0,0,239,1346,1,0,0,0,241,1355,1,0,0,0,243,1358, + 1,0,0,0,245,1364,1,0,0,0,247,1370,1,0,0,0,249,1378,1,0,0,0,251,1383, + 1,0,0,0,253,1393,1,0,0,0,255,1402,1,0,0,0,257,1412,1,0,0,0,259,1421, + 1,0,0,0,261,1429,1,0,0,0,263,1440,1,0,0,0,265,1448,1,0,0,0,267,1454, + 1,0,0,0,269,1461,1,0,0,0,271,1468,1,0,0,0,273,1475,1,0,0,0,275,1483, + 1,0,0,0,277,1491,1,0,0,0,279,1502,1,0,0,0,281,1508,1,0,0,0,283,1515, + 1,0,0,0,285,1519,1,0,0,0,287,1524,1,0,0,0,289,1531,1,0,0,0,291,1538, + 1,0,0,0,293,1545,1,0,0,0,295,1550,1,0,0,0,297,1556,1,0,0,0,299,1560, + 1,0,0,0,301,1569,1,0,0,0,303,1574,1,0,0,0,305,1581,1,0,0,0,307,1587, + 1,0,0,0,309,1592,1,0,0,0,311,1602,1,0,0,0,313,1607,1,0,0,0,315,1614, + 1,0,0,0,317,1621,1,0,0,0,319,1627,1,0,0,0,321,1634,1,0,0,0,323,1644, + 1,0,0,0,325,1649,1,0,0,0,327,1654,1,0,0,0,329,1659,1,0,0,0,331,1667, + 1,0,0,0,333,1677,1,0,0,0,335,1680,1,0,0,0,337,1684,1,0,0,0,339,1691, + 1,0,0,0,341,1700,1,0,0,0,343,1705,1,0,0,0,345,1714,1,0,0,0,347,1718, + 1,0,0,0,349,1723,1,0,0,0,351,1733,1,0,0,0,353,1739,1,0,0,0,355,1746, + 1,0,0,0,357,1750,1,0,0,0,359,1756,1,0,0,0,361,1761,1,0,0,0,363,1768, + 1,0,0,0,365,1773,1,0,0,0,367,1780,1,0,0,0,369,1786,1,0,0,0,371,1791, + 1,0,0,0,373,1796,1,0,0,0,375,1802,1,0,0,0,377,1809,1,0,0,0,379,1824, + 1,0,0,0,381,1826,1,0,0,0,383,1832,1,0,0,0,385,1867,1,0,0,0,387,1909, + 1,0,0,0,389,1987,1,0,0,0,391,1989,1,0,0,0,393,1996,1,0,0,0,395,2000, + 1,0,0,0,397,2007,1,0,0,0,399,2020,1,0,0,0,401,2033,1,0,0,0,403,2035, + 1,0,0,0,405,2037,1,0,0,0,407,2039,1,0,0,0,409,2041,1,0,0,0,411,2043, + 1,0,0,0,413,2045,1,0,0,0,415,2047,1,0,0,0,417,2049,1,0,0,0,419,2051, + 1,0,0,0,421,2053,1,0,0,0,423,2055,1,0,0,0,425,2057,1,0,0,0,427,2059, + 1,0,0,0,429,2061,1,0,0,0,431,2063,1,0,0,0,433,2065,1,0,0,0,435,2067, + 1,0,0,0,437,2069,1,0,0,0,439,2071,1,0,0,0,441,2073,1,0,0,0,443,2075, + 1,0,0,0,445,2077,1,0,0,0,447,2079,1,0,0,0,449,2081,1,0,0,0,451,2083, + 1,0,0,0,453,2085,1,0,0,0,455,2087,1,0,0,0,457,2089,1,0,0,0,459,2091, + 1,0,0,0,461,2093,1,0,0,0,463,2096,1,0,0,0,465,2098,1,0,0,0,467,2100, + 1,0,0,0,469,2102,1,0,0,0,471,2104,1,0,0,0,473,2106,1,0,0,0,475,2109, + 1,0,0,0,477,2111,1,0,0,0,479,2113,1,0,0,0,481,2115,1,0,0,0,483,2118, + 1,0,0,0,485,2120,1,0,0,0,487,2123,1,0,0,0,489,2125,1,0,0,0,491,2127, + 1,0,0,0,493,2130,1,0,0,0,495,2134,1,0,0,0,497,2136,1,0,0,0,499,2138, + 1,0,0,0,501,2140,1,0,0,0,503,2143,1,0,0,0,505,2149,1,0,0,0,507,2151, + 1,0,0,0,509,2155,1,0,0,0,511,2158,1,0,0,0,513,2160,1,0,0,0,515,2162, + 1,0,0,0,517,2164,1,0,0,0,519,2166,1,0,0,0,521,2168,1,0,0,0,523,2170, + 1,0,0,0,525,2173,1,0,0,0,527,2175,1,0,0,0,529,2177,1,0,0,0,531,2179, + 1,0,0,0,533,2181,1,0,0,0,535,2183,1,0,0,0,537,2185,1,0,0,0,539,2199, + 1,0,0,0,541,2213,1,0,0,0,543,544,3,401,200,0,544,545,3,407,203,0, + 545,546,3,407,203,0,546,2,1,0,0,0,547,548,3,401,200,0,548,549,3, + 411,205,0,549,550,3,439,219,0,550,551,3,409,204,0,551,552,3,435, + 217,0,552,4,1,0,0,0,553,554,3,401,200,0,554,555,3,423,211,0,555, + 556,3,417,208,0,556,557,3,401,200,0,557,558,3,437,218,0,558,6,1, + 0,0,0,559,560,3,401,200,0,560,561,3,423,211,0,561,562,3,423,211, + 0,562,8,1,0,0,0,563,564,3,401,200,0,564,565,3,423,211,0,565,566, + 3,439,219,0,566,567,3,409,204,0,567,568,3,435,217,0,568,10,1,0,0, + 0,569,570,3,401,200,0,570,571,3,427,213,0,571,572,3,407,203,0,572, + 12,1,0,0,0,573,574,3,401,200,0,574,575,3,427,213,0,575,576,3,439, + 219,0,576,577,3,417,208,0,577,14,1,0,0,0,578,579,3,401,200,0,579, + 580,3,427,213,0,580,581,3,449,224,0,581,16,1,0,0,0,582,583,3,401, + 200,0,583,584,3,435,217,0,584,585,3,435,217,0,585,586,3,401,200, + 0,586,587,3,449,224,0,587,18,1,0,0,0,588,589,3,401,200,0,589,590, + 3,437,218,0,590,20,1,0,0,0,591,592,3,401,200,0,592,593,3,437,218, + 0,593,594,3,405,202,0,594,606,1,0,0,0,595,596,3,401,200,0,596,597, + 3,437,218,0,597,598,3,405,202,0,598,599,3,409,204,0,599,600,3,427, + 213,0,600,601,3,407,203,0,601,602,3,417,208,0,602,603,3,427,213, + 0,603,604,3,413,206,0,604,606,1,0,0,0,605,591,1,0,0,0,605,595,1, + 0,0,0,606,22,1,0,0,0,607,608,3,401,200,0,608,609,3,437,218,0,609, + 610,3,429,214,0,610,611,3,411,205,0,611,24,1,0,0,0,612,613,3,401, + 200,0,613,614,3,437,218,0,614,615,3,439,219,0,615,26,1,0,0,0,616, + 617,3,401,200,0,617,618,3,437,218,0,618,619,3,449,224,0,619,620, + 3,427,213,0,620,621,3,405,202,0,621,28,1,0,0,0,622,623,3,401,200, + 0,623,624,3,439,219,0,624,625,3,439,219,0,625,626,3,401,200,0,626, + 627,3,405,202,0,627,628,3,415,207,0,628,30,1,0,0,0,629,630,3,403, + 201,0,630,631,3,409,204,0,631,632,3,439,219,0,632,633,3,445,222, + 0,633,634,3,409,204,0,634,635,3,409,204,0,635,636,3,427,213,0,636, + 32,1,0,0,0,637,638,3,403,201,0,638,639,3,429,214,0,639,640,3,439, + 219,0,640,641,3,415,207,0,641,34,1,0,0,0,642,643,3,403,201,0,643, + 644,3,449,224,0,644,36,1,0,0,0,645,646,3,405,202,0,646,647,3,401, + 200,0,647,648,3,437,218,0,648,649,3,409,204,0,649,38,1,0,0,0,650, + 651,3,405,202,0,651,652,3,401,200,0,652,653,3,437,218,0,653,654, + 3,439,219,0,654,40,1,0,0,0,655,656,3,405,202,0,656,657,3,415,207, + 0,657,658,3,409,204,0,658,659,3,405,202,0,659,660,3,421,210,0,660, + 42,1,0,0,0,661,662,3,405,202,0,662,663,3,423,211,0,663,664,3,409, + 204,0,664,665,3,401,200,0,665,666,3,435,217,0,666,44,1,0,0,0,667, + 668,3,405,202,0,668,669,3,423,211,0,669,670,3,441,220,0,670,671, + 3,437,218,0,671,672,3,439,219,0,672,673,3,409,204,0,673,674,3,435, + 217,0,674,46,1,0,0,0,675,676,3,405,202,0,676,677,3,429,214,0,677, + 678,3,407,203,0,678,679,3,409,204,0,679,680,3,405,202,0,680,48,1, + 0,0,0,681,682,3,405,202,0,682,683,3,429,214,0,683,684,3,415,207, + 0,684,685,3,429,214,0,685,686,3,435,217,0,686,687,3,439,219,0,687, + 50,1,0,0,0,688,689,3,405,202,0,689,690,3,429,214,0,690,691,3,423, + 211,0,691,692,3,423,211,0,692,693,3,401,200,0,693,694,3,439,219, + 0,694,695,3,409,204,0,695,52,1,0,0,0,696,697,3,405,202,0,697,698, + 3,429,214,0,698,699,3,423,211,0,699,700,3,441,220,0,700,701,3,425, + 212,0,701,702,3,427,213,0,702,54,1,0,0,0,703,704,3,405,202,0,704, + 705,3,429,214,0,705,706,3,425,212,0,706,707,3,425,212,0,707,708, + 3,409,204,0,708,709,3,427,213,0,709,710,3,439,219,0,710,56,1,0,0, + 0,711,712,3,405,202,0,712,713,3,429,214,0,713,714,3,427,213,0,714, + 715,3,437,218,0,715,716,3,439,219,0,716,717,3,435,217,0,717,718, + 3,401,200,0,718,719,3,417,208,0,719,720,3,427,213,0,720,721,3,439, + 219,0,721,58,1,0,0,0,722,723,3,405,202,0,723,724,3,435,217,0,724, + 725,3,409,204,0,725,726,3,401,200,0,726,727,3,439,219,0,727,728, + 3,409,204,0,728,60,1,0,0,0,729,730,3,405,202,0,730,731,3,435,217, + 0,731,732,3,429,214,0,732,733,3,437,218,0,733,734,3,437,218,0,734, + 62,1,0,0,0,735,736,3,405,202,0,736,737,3,441,220,0,737,738,3,403, + 201,0,738,739,3,409,204,0,739,64,1,0,0,0,740,741,3,405,202,0,741, + 742,3,441,220,0,742,743,3,435,217,0,743,744,3,435,217,0,744,745, + 3,409,204,0,745,746,3,427,213,0,746,747,3,439,219,0,747,66,1,0,0, + 0,748,749,3,407,203,0,749,750,3,401,200,0,750,751,3,439,219,0,751, + 752,3,401,200,0,752,753,3,403,201,0,753,754,3,401,200,0,754,755, + 3,437,218,0,755,756,3,409,204,0,756,68,1,0,0,0,757,758,3,407,203, + 0,758,759,3,401,200,0,759,760,3,439,219,0,760,761,3,401,200,0,761, + 762,3,403,201,0,762,763,3,401,200,0,763,764,3,437,218,0,764,765, + 3,409,204,0,765,766,3,437,218,0,766,70,1,0,0,0,767,768,3,407,203, + 0,768,769,3,401,200,0,769,770,3,439,219,0,770,771,3,409,204,0,771, + 72,1,0,0,0,772,773,3,407,203,0,773,774,3,401,200,0,774,775,3,449, + 224,0,775,74,1,0,0,0,776,777,3,407,203,0,777,778,3,409,204,0,778, + 779,3,407,203,0,779,780,3,441,220,0,780,781,3,431,215,0,781,782, + 3,423,211,0,782,783,3,417,208,0,783,784,3,405,202,0,784,785,3,401, + 200,0,785,786,3,439,219,0,786,787,3,409,204,0,787,76,1,0,0,0,788, + 789,3,407,203,0,789,790,3,409,204,0,790,791,3,411,205,0,791,792, + 3,401,200,0,792,793,3,441,220,0,793,794,3,423,211,0,794,795,3,439, + 219,0,795,78,1,0,0,0,796,797,3,407,203,0,797,798,3,409,204,0,798, + 799,3,423,211,0,799,800,3,401,200,0,800,801,3,449,224,0,801,80,1, + 0,0,0,802,803,3,407,203,0,803,804,3,409,204,0,804,805,3,423,211, + 0,805,806,3,409,204,0,806,807,3,439,219,0,807,808,3,409,204,0,808, + 82,1,0,0,0,809,810,3,407,203,0,810,811,3,409,204,0,811,812,3,437, + 218,0,812,813,3,405,202,0,813,84,1,0,0,0,814,815,3,407,203,0,815, + 816,3,409,204,0,816,817,3,437,218,0,817,818,3,405,202,0,818,819, + 3,409,204,0,819,820,3,427,213,0,820,821,3,407,203,0,821,822,3,417, + 208,0,822,823,3,427,213,0,823,824,3,413,206,0,824,86,1,0,0,0,825, + 826,3,407,203,0,826,827,3,409,204,0,827,828,3,437,218,0,828,829, + 3,405,202,0,829,830,3,435,217,0,830,831,3,417,208,0,831,832,3,403, + 201,0,832,833,3,409,204,0,833,88,1,0,0,0,834,835,3,407,203,0,835, + 836,3,409,204,0,836,837,3,439,219,0,837,838,3,401,200,0,838,839, + 3,405,202,0,839,840,3,415,207,0,840,90,1,0,0,0,841,842,3,407,203, + 0,842,843,3,417,208,0,843,844,3,405,202,0,844,845,3,439,219,0,845, + 846,3,417,208,0,846,847,3,429,214,0,847,848,3,427,213,0,848,849, + 3,401,200,0,849,850,3,435,217,0,850,851,3,417,208,0,851,852,3,409, + 204,0,852,853,3,437,218,0,853,92,1,0,0,0,854,855,3,407,203,0,855, + 856,3,417,208,0,856,857,3,405,202,0,857,858,3,439,219,0,858,859, + 3,417,208,0,859,860,3,429,214,0,860,861,3,427,213,0,861,862,3,401, + 200,0,862,863,3,435,217,0,863,864,3,449,224,0,864,94,1,0,0,0,865, + 866,3,407,203,0,866,867,3,417,208,0,867,868,3,437,218,0,868,869, + 3,421,210,0,869,96,1,0,0,0,870,871,3,407,203,0,871,872,3,417,208, + 0,872,873,3,437,218,0,873,874,3,439,219,0,874,875,3,417,208,0,875, + 876,3,427,213,0,876,877,3,405,202,0,877,878,3,439,219,0,878,98,1, + 0,0,0,879,880,3,407,203,0,880,881,3,417,208,0,881,882,3,437,218, + 0,882,883,3,439,219,0,883,884,3,435,217,0,884,885,3,417,208,0,885, + 886,3,403,201,0,886,887,3,441,220,0,887,888,3,439,219,0,888,889, + 3,409,204,0,889,890,3,407,203,0,890,100,1,0,0,0,891,892,3,407,203, + 0,892,893,3,435,217,0,893,894,3,429,214,0,894,895,3,431,215,0,895, + 102,1,0,0,0,896,897,3,409,204,0,897,898,3,423,211,0,898,899,3,437, + 218,0,899,900,3,409,204,0,900,104,1,0,0,0,901,902,3,409,204,0,902, + 903,3,427,213,0,903,904,3,407,203,0,904,106,1,0,0,0,905,906,3,409, + 204,0,906,907,3,427,213,0,907,908,3,413,206,0,908,909,3,417,208, + 0,909,910,3,427,213,0,910,911,3,409,204,0,911,108,1,0,0,0,912,913, + 3,409,204,0,913,914,3,443,221,0,914,915,3,409,204,0,915,916,3,427, + 213,0,916,917,3,439,219,0,917,918,3,437,218,0,918,110,1,0,0,0,919, + 920,3,409,204,0,920,921,3,447,223,0,921,922,3,417,208,0,922,923, + 3,437,218,0,923,924,3,439,219,0,924,925,3,437,218,0,925,112,1,0, + 0,0,926,927,3,409,204,0,927,928,3,447,223,0,928,929,3,431,215,0, + 929,930,3,423,211,0,930,931,3,401,200,0,931,932,3,417,208,0,932, + 933,3,427,213,0,933,114,1,0,0,0,934,935,3,409,204,0,935,936,3,447, + 223,0,936,937,3,431,215,0,937,938,3,435,217,0,938,939,3,409,204, + 0,939,940,3,437,218,0,940,941,3,437,218,0,941,942,3,417,208,0,942, + 943,3,429,214,0,943,944,3,427,213,0,944,116,1,0,0,0,945,946,3,409, + 204,0,946,947,3,447,223,0,947,948,3,439,219,0,948,949,3,435,217, + 0,949,950,3,401,200,0,950,951,3,405,202,0,951,952,3,439,219,0,952, + 118,1,0,0,0,953,954,3,411,205,0,954,955,3,409,204,0,955,956,3,439, + 219,0,956,957,3,405,202,0,957,958,3,415,207,0,958,959,3,409,204, + 0,959,960,3,437,218,0,960,120,1,0,0,0,961,962,3,411,205,0,962,963, + 3,417,208,0,963,964,3,427,213,0,964,965,3,401,200,0,965,966,3,423, + 211,0,966,122,1,0,0,0,967,968,3,411,205,0,968,969,3,417,208,0,969, + 970,3,435,217,0,970,971,3,437,218,0,971,972,3,439,219,0,972,124, + 1,0,0,0,973,974,3,411,205,0,974,975,3,423,211,0,975,976,3,441,220, + 0,976,977,3,437,218,0,977,978,3,415,207,0,978,126,1,0,0,0,979,980, + 3,411,205,0,980,981,3,429,214,0,981,982,3,423,211,0,982,983,3,423, + 211,0,983,984,3,429,214,0,984,985,3,445,222,0,985,986,3,417,208, + 0,986,987,3,427,213,0,987,988,3,413,206,0,988,128,1,0,0,0,989,990, + 3,411,205,0,990,991,3,429,214,0,991,992,3,435,217,0,992,130,1,0, + 0,0,993,994,3,411,205,0,994,995,3,429,214,0,995,996,3,435,217,0, + 996,997,3,425,212,0,997,998,3,401,200,0,998,999,3,439,219,0,999, + 132,1,0,0,0,1000,1001,3,411,205,0,1001,1002,3,435,217,0,1002,1003, + 3,409,204,0,1003,1004,3,409,204,0,1004,1005,3,451,225,0,1005,1006, + 3,409,204,0,1006,134,1,0,0,0,1007,1008,3,411,205,0,1008,1009,3,435, + 217,0,1009,1010,3,429,214,0,1010,1011,3,425,212,0,1011,136,1,0,0, + 0,1012,1013,3,411,205,0,1013,1014,3,441,220,0,1014,1015,3,423,211, + 0,1015,1016,3,423,211,0,1016,138,1,0,0,0,1017,1018,3,411,205,0,1018, + 1019,3,441,220,0,1019,1020,3,427,213,0,1020,1021,3,405,202,0,1021, + 1022,3,439,219,0,1022,1023,3,417,208,0,1023,1024,3,429,214,0,1024, + 1025,3,427,213,0,1025,140,1,0,0,0,1026,1027,3,413,206,0,1027,1028, + 3,423,211,0,1028,1029,3,429,214,0,1029,1030,3,403,201,0,1030,1031, + 3,401,200,0,1031,1032,3,423,211,0,1032,142,1,0,0,0,1033,1034,3,413, + 206,0,1034,1035,3,435,217,0,1035,1036,3,401,200,0,1036,1037,3,427, + 213,0,1037,1038,3,441,220,0,1038,1039,3,423,211,0,1039,1040,3,401, + 200,0,1040,1041,3,435,217,0,1041,1042,3,417,208,0,1042,1043,3,439, + 219,0,1043,1044,3,449,224,0,1044,144,1,0,0,0,1045,1046,3,413,206, + 0,1046,1047,3,435,217,0,1047,1048,3,429,214,0,1048,1049,3,441,220, + 0,1049,1050,3,431,215,0,1050,146,1,0,0,0,1051,1052,3,415,207,0,1052, + 1053,3,401,200,0,1053,1054,3,443,221,0,1054,1055,3,417,208,0,1055, + 1056,3,427,213,0,1056,1057,3,413,206,0,1057,148,1,0,0,0,1058,1059, + 3,415,207,0,1059,1060,3,417,208,0,1060,1061,3,409,204,0,1061,1062, + 3,435,217,0,1062,1063,3,401,200,0,1063,1064,3,435,217,0,1064,1065, + 3,405,202,0,1065,1066,3,415,207,0,1066,1067,3,417,208,0,1067,1068, + 3,405,202,0,1068,1069,3,401,200,0,1069,1070,3,423,211,0,1070,150, + 1,0,0,0,1071,1072,3,415,207,0,1072,1073,3,429,214,0,1073,1074,3, + 441,220,0,1074,1075,3,435,217,0,1075,152,1,0,0,0,1076,1077,3,417, + 208,0,1077,1078,3,407,203,0,1078,154,1,0,0,0,1079,1080,3,417,208, + 0,1080,1081,3,411,205,0,1081,156,1,0,0,0,1082,1083,3,417,208,0,1083, + 1084,3,423,211,0,1084,1085,3,417,208,0,1085,1086,3,421,210,0,1086, + 1087,3,409,204,0,1087,158,1,0,0,0,1088,1089,3,417,208,0,1089,1090, + 3,427,213,0,1090,160,1,0,0,0,1091,1092,3,417,208,0,1092,1093,3,427, + 213,0,1093,1094,3,407,203,0,1094,1095,3,409,204,0,1095,1096,3,447, + 223,0,1096,162,1,0,0,0,1097,1098,3,417,208,0,1098,1099,3,427,213, + 0,1099,1100,3,411,205,0,1100,1111,1,0,0,0,1101,1102,3,417,208,0, + 1102,1103,3,427,213,0,1103,1104,3,411,205,0,1104,1105,3,417,208, + 0,1105,1106,3,427,213,0,1106,1107,3,417,208,0,1107,1108,3,439,219, + 0,1108,1109,3,449,224,0,1109,1111,1,0,0,0,1110,1097,1,0,0,0,1110, + 1101,1,0,0,0,1111,164,1,0,0,0,1112,1113,3,417,208,0,1113,1114,3, + 427,213,0,1114,1115,3,419,209,0,1115,1116,3,409,204,0,1116,1117, + 3,405,202,0,1117,1118,3,439,219,0,1118,1119,3,417,208,0,1119,1120, + 3,443,221,0,1120,1121,3,409,204,0,1121,166,1,0,0,0,1122,1123,3,417, + 208,0,1123,1124,3,427,213,0,1124,1125,3,427,213,0,1125,1126,3,409, + 204,0,1126,1127,3,435,217,0,1127,168,1,0,0,0,1128,1129,3,417,208, + 0,1129,1130,3,427,213,0,1130,1131,3,437,218,0,1131,1132,3,409,204, + 0,1132,1133,3,435,217,0,1133,1134,3,439,219,0,1134,170,1,0,0,0,1135, + 1136,3,417,208,0,1136,1137,3,427,213,0,1137,1138,3,439,219,0,1138, + 1139,3,409,204,0,1139,1140,3,435,217,0,1140,1141,3,443,221,0,1141, + 1142,3,401,200,0,1142,1143,3,423,211,0,1143,172,1,0,0,0,1144,1145, + 3,417,208,0,1145,1146,3,427,213,0,1146,1147,3,439,219,0,1147,1148, + 3,429,214,0,1148,174,1,0,0,0,1149,1150,3,417,208,0,1150,1151,3,437, + 218,0,1151,176,1,0,0,0,1152,1153,3,417,208,0,1153,1154,3,437,218, + 0,1154,1155,3,535,267,0,1155,1156,3,429,214,0,1156,1157,3,403,201, + 0,1157,1158,3,419,209,0,1158,1159,3,409,204,0,1159,1160,3,405,202, + 0,1160,1161,3,439,219,0,1161,1162,3,535,267,0,1162,1163,3,417,208, + 0,1163,1164,3,407,203,0,1164,178,1,0,0,0,1165,1166,3,419,209,0,1166, + 1167,3,429,214,0,1167,1168,3,417,208,0,1168,1169,3,427,213,0,1169, + 180,1,0,0,0,1170,1171,3,421,210,0,1171,1172,3,409,204,0,1172,1173, + 3,449,224,0,1173,182,1,0,0,0,1174,1175,3,421,210,0,1175,1176,3,417, + 208,0,1176,1177,3,423,211,0,1177,1178,3,423,211,0,1178,184,1,0,0, + 0,1179,1180,3,423,211,0,1180,1181,3,401,200,0,1181,1182,3,437,218, + 0,1182,1183,3,439,219,0,1183,186,1,0,0,0,1184,1185,3,423,211,0,1185, + 1186,3,401,200,0,1186,1187,3,449,224,0,1187,1188,3,429,214,0,1188, + 1189,3,441,220,0,1189,1190,3,439,219,0,1190,188,1,0,0,0,1191,1192, + 3,423,211,0,1192,1193,3,409,204,0,1193,1194,3,401,200,0,1194,1195, + 3,407,203,0,1195,1196,3,417,208,0,1196,1197,3,427,213,0,1197,1198, + 3,413,206,0,1198,190,1,0,0,0,1199,1200,3,423,211,0,1200,1201,3,409, + 204,0,1201,1202,3,411,205,0,1202,1203,3,439,219,0,1203,192,1,0,0, + 0,1204,1205,3,423,211,0,1205,1206,3,417,208,0,1206,1207,3,411,205, + 0,1207,1208,3,409,204,0,1208,1209,3,439,219,0,1209,1210,3,417,208, + 0,1210,1211,3,425,212,0,1211,1212,3,409,204,0,1212,194,1,0,0,0,1213, + 1214,3,423,211,0,1214,1215,3,417,208,0,1215,1216,3,421,210,0,1216, + 1217,3,409,204,0,1217,196,1,0,0,0,1218,1219,3,423,211,0,1219,1220, + 3,417,208,0,1220,1221,3,425,212,0,1221,1222,3,417,208,0,1222,1223, + 3,439,219,0,1223,198,1,0,0,0,1224,1225,3,423,211,0,1225,1226,3,417, + 208,0,1226,1227,3,443,221,0,1227,1228,3,409,204,0,1228,200,1,0,0, + 0,1229,1230,3,423,211,0,1230,1231,3,429,214,0,1231,1232,3,405,202, + 0,1232,1233,3,401,200,0,1233,1234,3,423,211,0,1234,202,1,0,0,0,1235, + 1236,3,423,211,0,1236,1237,3,429,214,0,1237,1238,3,413,206,0,1238, + 1239,3,437,218,0,1239,204,1,0,0,0,1240,1241,3,425,212,0,1241,1242, + 3,401,200,0,1242,1243,3,439,219,0,1243,1244,3,409,204,0,1244,1245, + 3,435,217,0,1245,1246,3,417,208,0,1246,1247,3,401,200,0,1247,1248, + 3,423,211,0,1248,1249,3,417,208,0,1249,1250,3,451,225,0,1250,1251, + 3,409,204,0,1251,206,1,0,0,0,1252,1253,3,425,212,0,1253,1254,3,401, + 200,0,1254,1255,3,439,219,0,1255,1256,3,409,204,0,1256,1257,3,435, + 217,0,1257,1258,3,417,208,0,1258,1259,3,401,200,0,1259,1260,3,423, + 211,0,1260,1261,3,417,208,0,1261,1262,3,451,225,0,1262,1263,3,409, + 204,0,1263,1264,3,407,203,0,1264,208,1,0,0,0,1265,1266,3,425,212, + 0,1266,1267,3,401,200,0,1267,1268,3,447,223,0,1268,210,1,0,0,0,1269, + 1270,3,425,212,0,1270,1271,3,409,204,0,1271,1272,3,435,217,0,1272, + 1273,3,413,206,0,1273,1274,3,409,204,0,1274,1275,3,437,218,0,1275, + 212,1,0,0,0,1276,1277,3,425,212,0,1277,1278,3,417,208,0,1278,1279, + 3,427,213,0,1279,214,1,0,0,0,1280,1281,3,425,212,0,1281,1282,3,417, + 208,0,1282,1283,3,427,213,0,1283,1284,3,441,220,0,1284,1285,3,439, + 219,0,1285,1286,3,409,204,0,1286,216,1,0,0,0,1287,1288,3,425,212, + 0,1288,1289,3,429,214,0,1289,1290,3,407,203,0,1290,1291,3,417,208, + 0,1291,1292,3,411,205,0,1292,1293,3,449,224,0,1293,218,1,0,0,0,1294, + 1295,3,425,212,0,1295,1296,3,429,214,0,1296,1297,3,427,213,0,1297, + 1298,3,439,219,0,1298,1299,3,415,207,0,1299,220,1,0,0,0,1300,1301, + 3,425,212,0,1301,1302,3,429,214,0,1302,1303,3,443,221,0,1303,1304, + 3,409,204,0,1304,222,1,0,0,0,1305,1306,3,425,212,0,1306,1307,3,441, + 220,0,1307,1308,3,439,219,0,1308,1309,3,401,200,0,1309,1310,3,439, + 219,0,1310,1311,3,417,208,0,1311,1312,3,429,214,0,1312,1313,3,427, + 213,0,1313,224,1,0,0,0,1314,1315,3,427,213,0,1315,1316,3,401,200, + 0,1316,1317,3,427,213,0,1317,226,1,0,0,0,1318,1319,3,427,213,0,1319, + 1320,3,429,214,0,1320,228,1,0,0,0,1321,1322,3,427,213,0,1322,1323, + 3,429,214,0,1323,1324,3,439,219,0,1324,230,1,0,0,0,1325,1326,3,427, + 213,0,1326,1327,3,441,220,0,1327,1328,3,423,211,0,1328,1329,3,423, + 211,0,1329,232,1,0,0,0,1330,1331,3,427,213,0,1331,1332,3,441,220, + 0,1332,1333,3,423,211,0,1333,1334,3,423,211,0,1334,1335,3,437,218, + 0,1335,234,1,0,0,0,1336,1337,3,429,214,0,1337,1338,3,411,205,0,1338, + 1339,3,411,205,0,1339,1340,3,437,218,0,1340,1341,3,409,204,0,1341, + 1342,3,439,219,0,1342,236,1,0,0,0,1343,1344,3,429,214,0,1344,1345, + 3,427,213,0,1345,238,1,0,0,0,1346,1347,3,429,214,0,1347,1348,3,431, + 215,0,1348,1349,3,439,219,0,1349,1350,3,417,208,0,1350,1351,3,425, + 212,0,1351,1352,3,417,208,0,1352,1353,3,451,225,0,1353,1354,3,409, + 204,0,1354,240,1,0,0,0,1355,1356,3,429,214,0,1356,1357,3,435,217, + 0,1357,242,1,0,0,0,1358,1359,3,429,214,0,1359,1360,3,435,217,0,1360, + 1361,3,407,203,0,1361,1362,3,409,204,0,1362,1363,3,435,217,0,1363, + 244,1,0,0,0,1364,1365,3,429,214,0,1365,1366,3,441,220,0,1366,1367, + 3,439,219,0,1367,1368,3,409,204,0,1368,1369,3,435,217,0,1369,246, + 1,0,0,0,1370,1371,3,429,214,0,1371,1372,3,441,220,0,1372,1373,3, + 439,219,0,1373,1374,3,411,205,0,1374,1375,3,417,208,0,1375,1376, + 3,423,211,0,1376,1377,3,409,204,0,1377,248,1,0,0,0,1378,1379,3,429, + 214,0,1379,1380,3,443,221,0,1380,1381,3,409,204,0,1381,1382,3,435, + 217,0,1382,250,1,0,0,0,1383,1384,3,431,215,0,1384,1385,3,401,200, + 0,1385,1386,3,435,217,0,1386,1387,3,439,219,0,1387,1388,3,417,208, + 0,1388,1389,3,439,219,0,1389,1390,3,417,208,0,1390,1391,3,429,214, + 0,1391,1392,3,427,213,0,1392,252,1,0,0,0,1393,1394,3,431,215,0,1394, + 1395,3,429,214,0,1395,1396,3,431,215,0,1396,1397,3,441,220,0,1397, + 1398,3,423,211,0,1398,1399,3,401,200,0,1399,1400,3,439,219,0,1400, + 1401,3,409,204,0,1401,254,1,0,0,0,1402,1403,3,431,215,0,1403,1404, + 3,435,217,0,1404,1405,3,409,204,0,1405,1406,3,405,202,0,1406,1407, + 3,409,204,0,1407,1408,3,407,203,0,1408,1409,3,417,208,0,1409,1410, + 3,427,213,0,1410,1411,3,413,206,0,1411,256,1,0,0,0,1412,1413,3,431, + 215,0,1413,1414,3,435,217,0,1414,1415,3,409,204,0,1415,1416,3,445, + 222,0,1416,1417,3,415,207,0,1417,1418,3,409,204,0,1418,1419,3,435, + 217,0,1419,1420,3,409,204,0,1420,258,1,0,0,0,1421,1422,3,431,215, + 0,1422,1423,3,435,217,0,1423,1424,3,417,208,0,1424,1425,3,425,212, + 0,1425,1426,3,401,200,0,1426,1427,3,435,217,0,1427,1428,3,449,224, + 0,1428,260,1,0,0,0,1429,1430,3,431,215,0,1430,1431,3,435,217,0,1431, + 1432,3,429,214,0,1432,1433,3,419,209,0,1433,1434,3,409,204,0,1434, + 1435,3,405,202,0,1435,1436,3,439,219,0,1436,1437,3,417,208,0,1437, + 1438,3,429,214,0,1438,1439,3,427,213,0,1439,262,1,0,0,0,1440,1441, + 3,433,216,0,1441,1442,3,441,220,0,1442,1443,3,401,200,0,1443,1444, + 3,435,217,0,1444,1445,3,439,219,0,1445,1446,3,409,204,0,1446,1447, + 3,435,217,0,1447,264,1,0,0,0,1448,1449,3,435,217,0,1449,1450,3,401, + 200,0,1450,1451,3,427,213,0,1451,1452,3,413,206,0,1452,1453,3,409, + 204,0,1453,266,1,0,0,0,1454,1455,3,435,217,0,1455,1456,3,409,204, + 0,1456,1457,3,423,211,0,1457,1458,3,429,214,0,1458,1459,3,401,200, + 0,1459,1460,3,407,203,0,1460,268,1,0,0,0,1461,1462,3,435,217,0,1462, + 1463,3,409,204,0,1463,1464,3,425,212,0,1464,1465,3,429,214,0,1465, + 1466,3,443,221,0,1466,1467,3,409,204,0,1467,270,1,0,0,0,1468,1469, + 3,435,217,0,1469,1470,3,409,204,0,1470,1471,3,427,213,0,1471,1472, + 3,401,200,0,1472,1473,3,425,212,0,1473,1474,3,409,204,0,1474,272, + 1,0,0,0,1475,1476,3,435,217,0,1476,1477,3,409,204,0,1477,1478,3, + 431,215,0,1478,1479,3,423,211,0,1479,1480,3,401,200,0,1480,1481, + 3,405,202,0,1481,1482,3,409,204,0,1482,274,1,0,0,0,1483,1484,3,435, + 217,0,1484,1485,3,409,204,0,1485,1486,3,431,215,0,1486,1487,3,423, + 211,0,1487,1488,3,417,208,0,1488,1489,3,405,202,0,1489,1490,3,401, + 200,0,1490,276,1,0,0,0,1491,1492,3,435,217,0,1492,1493,3,409,204, + 0,1493,1494,3,431,215,0,1494,1495,3,423,211,0,1495,1496,3,417,208, + 0,1496,1497,3,405,202,0,1497,1498,3,401,200,0,1498,1499,3,439,219, + 0,1499,1500,3,409,204,0,1500,1501,3,407,203,0,1501,278,1,0,0,0,1502, + 1503,3,435,217,0,1503,1504,3,417,208,0,1504,1505,3,413,206,0,1505, + 1506,3,415,207,0,1506,1507,3,439,219,0,1507,280,1,0,0,0,1508,1509, + 3,435,217,0,1509,1510,3,429,214,0,1510,1511,3,423,211,0,1511,1512, + 3,423,211,0,1512,1513,3,441,220,0,1513,1514,3,431,215,0,1514,282, + 1,0,0,0,1515,1516,3,435,217,0,1516,1517,3,429,214,0,1517,1518,3, + 445,222,0,1518,284,1,0,0,0,1519,1520,3,435,217,0,1520,1521,3,429, + 214,0,1521,1522,3,445,222,0,1522,1523,3,437,218,0,1523,286,1,0,0, + 0,1524,1525,3,437,218,0,1525,1526,3,401,200,0,1526,1527,3,425,212, + 0,1527,1528,3,431,215,0,1528,1529,3,423,211,0,1529,1530,3,409,204, + 0,1530,288,1,0,0,0,1531,1532,3,437,218,0,1532,1533,3,409,204,0,1533, + 1534,3,405,202,0,1534,1535,3,429,214,0,1535,1536,3,427,213,0,1536, + 1537,3,407,203,0,1537,290,1,0,0,0,1538,1539,3,437,218,0,1539,1540, + 3,409,204,0,1540,1541,3,423,211,0,1541,1542,3,409,204,0,1542,1543, + 3,405,202,0,1543,1544,3,439,219,0,1544,292,1,0,0,0,1545,1546,3,437, + 218,0,1546,1547,3,409,204,0,1547,1548,3,425,212,0,1548,1549,3,417, + 208,0,1549,294,1,0,0,0,1550,1551,3,437,218,0,1551,1552,3,409,204, + 0,1552,1553,3,427,213,0,1553,1554,3,407,203,0,1554,1555,3,437,218, + 0,1555,296,1,0,0,0,1556,1557,3,437,218,0,1557,1558,3,409,204,0,1558, + 1559,3,439,219,0,1559,298,1,0,0,0,1560,1561,3,437,218,0,1561,1562, + 3,409,204,0,1562,1563,3,439,219,0,1563,1564,3,439,219,0,1564,1565, + 3,417,208,0,1565,1566,3,427,213,0,1566,1567,3,413,206,0,1567,1568, + 3,437,218,0,1568,300,1,0,0,0,1569,1570,3,437,218,0,1570,1571,3,415, + 207,0,1571,1572,3,429,214,0,1572,1573,3,445,222,0,1573,302,1,0,0, + 0,1574,1575,3,437,218,0,1575,1576,3,429,214,0,1576,1577,3,441,220, + 0,1577,1578,3,435,217,0,1578,1579,3,405,202,0,1579,1580,3,409,204, + 0,1580,304,1,0,0,0,1581,1582,3,437,218,0,1582,1583,3,439,219,0,1583, + 1584,3,401,200,0,1584,1585,3,435,217,0,1585,1586,3,439,219,0,1586, + 306,1,0,0,0,1587,1588,3,437,218,0,1588,1589,3,439,219,0,1589,1590, + 3,429,214,0,1590,1591,3,431,215,0,1591,308,1,0,0,0,1592,1593,3,437, + 218,0,1593,1594,3,441,220,0,1594,1595,3,403,201,0,1595,1596,3,437, + 218,0,1596,1597,3,439,219,0,1597,1598,3,435,217,0,1598,1599,3,417, + 208,0,1599,1600,3,427,213,0,1600,1601,3,413,206,0,1601,310,1,0,0, + 0,1602,1603,3,437,218,0,1603,1604,3,449,224,0,1604,1605,3,427,213, + 0,1605,1606,3,405,202,0,1606,312,1,0,0,0,1607,1608,3,437,218,0,1608, + 1609,3,449,224,0,1609,1610,3,427,213,0,1610,1611,3,439,219,0,1611, + 1612,3,401,200,0,1612,1613,3,447,223,0,1613,314,1,0,0,0,1614,1615, + 3,437,218,0,1615,1616,3,449,224,0,1616,1617,3,437,218,0,1617,1618, + 3,439,219,0,1618,1619,3,409,204,0,1619,1620,3,425,212,0,1620,316, + 1,0,0,0,1621,1622,3,439,219,0,1622,1623,3,401,200,0,1623,1624,3, + 403,201,0,1624,1625,3,423,211,0,1625,1626,3,409,204,0,1626,318,1, + 0,0,0,1627,1628,3,439,219,0,1628,1629,3,401,200,0,1629,1630,3,403, + 201,0,1630,1631,3,423,211,0,1631,1632,3,409,204,0,1632,1633,3,437, + 218,0,1633,320,1,0,0,0,1634,1635,3,439,219,0,1635,1636,3,409,204, + 0,1636,1637,3,425,212,0,1637,1638,3,431,215,0,1638,1639,3,429,214, + 0,1639,1640,3,435,217,0,1640,1641,3,401,200,0,1641,1642,3,435,217, + 0,1642,1643,3,449,224,0,1643,322,1,0,0,0,1644,1645,3,439,219,0,1645, + 1646,3,409,204,0,1646,1647,3,437,218,0,1647,1648,3,439,219,0,1648, + 324,1,0,0,0,1649,1650,3,439,219,0,1650,1651,3,415,207,0,1651,1652, + 3,409,204,0,1652,1653,3,427,213,0,1653,326,1,0,0,0,1654,1655,3,439, + 219,0,1655,1656,3,417,208,0,1656,1657,3,409,204,0,1657,1658,3,437, + 218,0,1658,328,1,0,0,0,1659,1660,3,439,219,0,1660,1661,3,417,208, + 0,1661,1662,3,425,212,0,1662,1663,3,409,204,0,1663,1664,3,429,214, + 0,1664,1665,3,441,220,0,1665,1666,3,439,219,0,1666,330,1,0,0,0,1667, + 1668,3,439,219,0,1668,1669,3,417,208,0,1669,1670,3,425,212,0,1670, + 1671,3,409,204,0,1671,1672,3,437,218,0,1672,1673,3,439,219,0,1673, + 1674,3,401,200,0,1674,1675,3,425,212,0,1675,1676,3,431,215,0,1676, + 332,1,0,0,0,1677,1678,3,439,219,0,1678,1679,3,429,214,0,1679,334, + 1,0,0,0,1680,1681,3,439,219,0,1681,1682,3,429,214,0,1682,1683,3, + 431,215,0,1683,336,1,0,0,0,1684,1685,3,439,219,0,1685,1686,3,429, + 214,0,1686,1687,3,439,219,0,1687,1688,3,401,200,0,1688,1689,3,423, + 211,0,1689,1690,3,437,218,0,1690,338,1,0,0,0,1691,1692,3,439,219, + 0,1692,1693,3,435,217,0,1693,1694,3,401,200,0,1694,1695,3,417,208, + 0,1695,1696,3,423,211,0,1696,1697,3,417,208,0,1697,1698,3,427,213, + 0,1698,1699,3,413,206,0,1699,340,1,0,0,0,1700,1701,3,439,219,0,1701, + 1702,3,435,217,0,1702,1703,3,417,208,0,1703,1704,3,425,212,0,1704, + 342,1,0,0,0,1705,1706,3,439,219,0,1706,1707,3,435,217,0,1707,1708, + 3,441,220,0,1708,1709,3,427,213,0,1709,1710,3,405,202,0,1710,1711, + 3,401,200,0,1711,1712,3,439,219,0,1712,1713,3,409,204,0,1713,344, + 1,0,0,0,1714,1715,3,439,219,0,1715,1716,3,439,219,0,1716,1717,3, + 423,211,0,1717,346,1,0,0,0,1718,1719,3,439,219,0,1719,1720,3,449, + 224,0,1720,1721,3,431,215,0,1721,1722,3,409,204,0,1722,348,1,0,0, + 0,1723,1724,3,441,220,0,1724,1725,3,427,213,0,1725,1726,3,403,201, + 0,1726,1727,3,429,214,0,1727,1728,3,441,220,0,1728,1729,3,427,213, + 0,1729,1730,3,407,203,0,1730,1731,3,409,204,0,1731,1732,3,407,203, + 0,1732,350,1,0,0,0,1733,1734,3,441,220,0,1734,1735,3,427,213,0,1735, + 1736,3,417,208,0,1736,1737,3,429,214,0,1737,1738,3,427,213,0,1738, + 352,1,0,0,0,1739,1740,3,441,220,0,1740,1741,3,431,215,0,1741,1742, + 3,407,203,0,1742,1743,3,401,200,0,1743,1744,3,439,219,0,1744,1745, + 3,409,204,0,1745,354,1,0,0,0,1746,1747,3,441,220,0,1747,1748,3,437, + 218,0,1748,1749,3,409,204,0,1749,356,1,0,0,0,1750,1751,3,441,220, + 0,1751,1752,3,437,218,0,1752,1753,3,417,208,0,1753,1754,3,427,213, + 0,1754,1755,3,413,206,0,1755,358,1,0,0,0,1756,1757,3,441,220,0,1757, + 1758,3,441,220,0,1758,1759,3,417,208,0,1759,1760,3,407,203,0,1760, + 360,1,0,0,0,1761,1762,3,443,221,0,1762,1763,3,401,200,0,1763,1764, + 3,423,211,0,1764,1765,3,441,220,0,1765,1766,3,409,204,0,1766,1767, + 3,437,218,0,1767,362,1,0,0,0,1768,1769,3,443,221,0,1769,1770,3,417, + 208,0,1770,1771,3,409,204,0,1771,1772,3,445,222,0,1772,364,1,0,0, + 0,1773,1774,3,443,221,0,1774,1775,3,429,214,0,1775,1776,3,423,211, + 0,1776,1777,3,441,220,0,1777,1778,3,425,212,0,1778,1779,3,409,204, + 0,1779,366,1,0,0,0,1780,1781,3,445,222,0,1781,1782,3,401,200,0,1782, + 1783,3,439,219,0,1783,1784,3,405,202,0,1784,1785,3,415,207,0,1785, + 368,1,0,0,0,1786,1787,3,445,222,0,1787,1788,3,409,204,0,1788,1789, + 3,409,204,0,1789,1790,3,421,210,0,1790,370,1,0,0,0,1791,1792,3,445, + 222,0,1792,1793,3,415,207,0,1793,1794,3,409,204,0,1794,1795,3,427, + 213,0,1795,372,1,0,0,0,1796,1797,3,445,222,0,1797,1798,3,415,207, + 0,1798,1799,3,409,204,0,1799,1800,3,435,217,0,1800,1801,3,409,204, + 0,1801,374,1,0,0,0,1802,1803,3,445,222,0,1803,1804,3,417,208,0,1804, + 1805,3,427,213,0,1805,1806,3,407,203,0,1806,1807,3,429,214,0,1807, + 1808,3,445,222,0,1808,376,1,0,0,0,1809,1810,3,445,222,0,1810,1811, + 3,417,208,0,1811,1812,3,439,219,0,1812,1813,3,415,207,0,1813,378, + 1,0,0,0,1814,1815,3,449,224,0,1815,1816,3,409,204,0,1816,1817,3, + 401,200,0,1817,1818,3,435,217,0,1818,1825,1,0,0,0,1819,1820,3,449, + 224,0,1820,1821,3,449,224,0,1821,1822,3,449,224,0,1822,1823,3,449, + 224,0,1823,1825,1,0,0,0,1824,1814,1,0,0,0,1824,1819,1,0,0,0,1825, + 380,1,0,0,0,1826,1827,5,102,0,0,1827,1828,5,97,0,0,1828,1829,5,108, + 0,0,1829,1830,5,115,0,0,1830,1831,5,101,0,0,1831,382,1,0,0,0,1832, + 1833,5,116,0,0,1833,1834,5,114,0,0,1834,1835,5,117,0,0,1835,1836, + 5,101,0,0,1836,384,1,0,0,0,1837,1838,3,467,233,0,1838,1839,3,403, + 201,0,1839,1868,1,0,0,0,1840,1841,3,467,233,0,1841,1842,3,411,205, + 0,1842,1868,1,0,0,0,1843,1844,3,467,233,0,1844,1845,3,435,217,0, + 1845,1868,1,0,0,0,1846,1847,3,467,233,0,1847,1848,3,427,213,0,1848, + 1868,1,0,0,0,1849,1850,3,467,233,0,1850,1851,3,439,219,0,1851,1868, + 1,0,0,0,1852,1853,3,467,233,0,1853,1854,5,48,0,0,1854,1868,1,0,0, + 0,1855,1856,3,467,233,0,1856,1857,3,401,200,0,1857,1868,1,0,0,0, + 1858,1859,3,467,233,0,1859,1860,3,443,221,0,1860,1868,1,0,0,0,1861, + 1862,3,467,233,0,1862,1863,3,467,233,0,1863,1868,1,0,0,0,1864,1865, + 3,467,233,0,1865,1866,3,519,259,0,1866,1868,1,0,0,0,1867,1837,1, + 0,0,0,1867,1840,1,0,0,0,1867,1843,1,0,0,0,1867,1846,1,0,0,0,1867, + 1849,1,0,0,0,1867,1852,1,0,0,0,1867,1855,1,0,0,0,1867,1858,1,0,0, + 0,1867,1861,1,0,0,0,1867,1864,1,0,0,0,1868,386,1,0,0,0,1869,1873, + 3,453,226,0,1870,1873,3,535,267,0,1871,1873,3,477,238,0,1872,1869, + 1,0,0,0,1872,1870,1,0,0,0,1872,1871,1,0,0,0,1873,1880,1,0,0,0,1874, + 1879,3,453,226,0,1875,1879,3,535,267,0,1876,1879,3,457,228,0,1877, + 1879,3,477,238,0,1878,1874,1,0,0,0,1878,1875,1,0,0,0,1878,1876,1, + 0,0,0,1878,1877,1,0,0,0,1879,1882,1,0,0,0,1880,1878,1,0,0,0,1880, + 1881,1,0,0,0,1881,1910,1,0,0,0,1882,1880,1,0,0,0,1883,1891,3,465, + 232,0,1884,1890,8,0,0,0,1885,1890,3,385,192,0,1886,1887,3,465,232, + 0,1887,1888,3,465,232,0,1888,1890,1,0,0,0,1889,1884,1,0,0,0,1889, + 1885,1,0,0,0,1889,1886,1,0,0,0,1890,1893,1,0,0,0,1891,1889,1,0,0, + 0,1891,1892,1,0,0,0,1892,1894,1,0,0,0,1893,1891,1,0,0,0,1894,1895, + 3,465,232,0,1895,1910,1,0,0,0,1896,1904,3,517,258,0,1897,1903,8, + 1,0,0,1898,1903,3,385,192,0,1899,1900,3,517,258,0,1900,1901,3,517, + 258,0,1901,1903,1,0,0,0,1902,1897,1,0,0,0,1902,1898,1,0,0,0,1902, + 1899,1,0,0,0,1903,1906,1,0,0,0,1904,1902,1,0,0,0,1904,1905,1,0,0, + 0,1905,1907,1,0,0,0,1906,1904,1,0,0,0,1907,1908,3,517,258,0,1908, + 1910,1,0,0,0,1909,1872,1,0,0,0,1909,1883,1,0,0,0,1909,1896,1,0,0, + 0,1910,388,1,0,0,0,1911,1912,3,395,197,0,1912,1916,3,479,239,0,1913, + 1915,3,459,229,0,1914,1913,1,0,0,0,1915,1918,1,0,0,0,1916,1914,1, + 0,0,0,1916,1917,1,0,0,0,1917,1921,1,0,0,0,1918,1916,1,0,0,0,1919, + 1922,3,431,215,0,1920,1922,3,409,204,0,1921,1919,1,0,0,0,1921,1920, + 1,0,0,0,1922,1925,1,0,0,0,1923,1926,3,513,256,0,1924,1926,3,475, + 237,0,1925,1923,1,0,0,0,1925,1924,1,0,0,0,1925,1926,1,0,0,0,1926, + 1928,1,0,0,0,1927,1929,3,457,228,0,1928,1927,1,0,0,0,1929,1930,1, + 0,0,0,1930,1928,1,0,0,0,1930,1931,1,0,0,0,1931,1988,1,0,0,0,1932, + 1935,3,395,197,0,1933,1936,3,431,215,0,1934,1936,3,409,204,0,1935, + 1933,1,0,0,0,1935,1934,1,0,0,0,1936,1939,1,0,0,0,1937,1940,3,513, + 256,0,1938,1940,3,475,237,0,1939,1937,1,0,0,0,1939,1938,1,0,0,0, + 1939,1940,1,0,0,0,1940,1942,1,0,0,0,1941,1943,3,457,228,0,1942,1941, + 1,0,0,0,1943,1944,1,0,0,0,1944,1942,1,0,0,0,1944,1945,1,0,0,0,1945, + 1988,1,0,0,0,1946,1947,3,393,196,0,1947,1951,3,479,239,0,1948,1950, + 3,457,228,0,1949,1948,1,0,0,0,1950,1953,1,0,0,0,1951,1949,1,0,0, + 0,1951,1952,1,0,0,0,1952,1954,1,0,0,0,1953,1951,1,0,0,0,1954,1957, + 3,409,204,0,1955,1958,3,513,256,0,1956,1958,3,475,237,0,1957,1955, + 1,0,0,0,1957,1956,1,0,0,0,1957,1958,1,0,0,0,1958,1960,1,0,0,0,1959, + 1961,3,457,228,0,1960,1959,1,0,0,0,1961,1962,1,0,0,0,1962,1960,1, + 0,0,0,1962,1963,1,0,0,0,1963,1988,1,0,0,0,1964,1965,3,479,239,0, + 1965,1966,3,393,196,0,1966,1969,3,409,204,0,1967,1970,3,513,256, + 0,1968,1970,3,475,237,0,1969,1967,1,0,0,0,1969,1968,1,0,0,0,1969, + 1970,1,0,0,0,1970,1972,1,0,0,0,1971,1973,3,457,228,0,1972,1971,1, + 0,0,0,1973,1974,1,0,0,0,1974,1972,1,0,0,0,1974,1975,1,0,0,0,1975, + 1988,1,0,0,0,1976,1977,3,393,196,0,1977,1980,3,409,204,0,1978,1981, + 3,513,256,0,1979,1981,3,475,237,0,1980,1978,1,0,0,0,1980,1979,1, + 0,0,0,1980,1981,1,0,0,0,1981,1983,1,0,0,0,1982,1984,3,457,228,0, + 1983,1982,1,0,0,0,1984,1985,1,0,0,0,1985,1983,1,0,0,0,1985,1986, + 1,0,0,0,1986,1988,1,0,0,0,1987,1911,1,0,0,0,1987,1932,1,0,0,0,1987, + 1946,1,0,0,0,1987,1964,1,0,0,0,1987,1976,1,0,0,0,1988,390,1,0,0, + 0,1989,1991,5,48,0,0,1990,1992,3,455,227,0,1991,1990,1,0,0,0,1992, + 1993,1,0,0,0,1993,1991,1,0,0,0,1993,1994,1,0,0,0,1994,392,1,0,0, + 0,1995,1997,3,457,228,0,1996,1995,1,0,0,0,1997,1998,1,0,0,0,1998, + 1996,1,0,0,0,1998,1999,1,0,0,0,1999,394,1,0,0,0,2000,2001,5,48,0, + 0,2001,2003,3,447,223,0,2002,2004,3,459,229,0,2003,2002,1,0,0,0, + 2004,2005,1,0,0,0,2005,2003,1,0,0,0,2005,2006,1,0,0,0,2006,396,1, + 0,0,0,2007,2015,3,519,259,0,2008,2014,8,2,0,0,2009,2014,3,385,192, + 0,2010,2011,3,519,259,0,2011,2012,3,519,259,0,2012,2014,1,0,0,0, + 2013,2008,1,0,0,0,2013,2009,1,0,0,0,2013,2010,1,0,0,0,2014,2017, + 1,0,0,0,2015,2013,1,0,0,0,2015,2016,1,0,0,0,2016,2018,1,0,0,0,2017, + 2015,1,0,0,0,2018,2019,3,519,259,0,2019,398,1,0,0,0,2020,2028,3, + 495,247,0,2021,2027,8,3,0,0,2022,2027,3,385,192,0,2023,2024,3,495, + 247,0,2024,2025,3,495,247,0,2025,2027,1,0,0,0,2026,2021,1,0,0,0, + 2026,2022,1,0,0,0,2026,2023,1,0,0,0,2027,2030,1,0,0,0,2028,2026, + 1,0,0,0,2028,2029,1,0,0,0,2029,2031,1,0,0,0,2030,2028,1,0,0,0,2031, + 2032,3,525,262,0,2032,400,1,0,0,0,2033,2034,7,4,0,0,2034,402,1,0, + 0,0,2035,2036,7,5,0,0,2036,404,1,0,0,0,2037,2038,7,6,0,0,2038,406, + 1,0,0,0,2039,2040,7,7,0,0,2040,408,1,0,0,0,2041,2042,7,8,0,0,2042, + 410,1,0,0,0,2043,2044,7,9,0,0,2044,412,1,0,0,0,2045,2046,7,10,0, + 0,2046,414,1,0,0,0,2047,2048,7,11,0,0,2048,416,1,0,0,0,2049,2050, + 7,12,0,0,2050,418,1,0,0,0,2051,2052,7,13,0,0,2052,420,1,0,0,0,2053, + 2054,7,14,0,0,2054,422,1,0,0,0,2055,2056,7,15,0,0,2056,424,1,0,0, + 0,2057,2058,7,16,0,0,2058,426,1,0,0,0,2059,2060,7,17,0,0,2060,428, + 1,0,0,0,2061,2062,7,18,0,0,2062,430,1,0,0,0,2063,2064,7,19,0,0,2064, + 432,1,0,0,0,2065,2066,7,20,0,0,2066,434,1,0,0,0,2067,2068,7,21,0, + 0,2068,436,1,0,0,0,2069,2070,7,22,0,0,2070,438,1,0,0,0,2071,2072, + 7,23,0,0,2072,440,1,0,0,0,2073,2074,7,24,0,0,2074,442,1,0,0,0,2075, + 2076,7,25,0,0,2076,444,1,0,0,0,2077,2078,7,26,0,0,2078,446,1,0,0, + 0,2079,2080,7,27,0,0,2080,448,1,0,0,0,2081,2082,7,28,0,0,2082,450, + 1,0,0,0,2083,2084,7,29,0,0,2084,452,1,0,0,0,2085,2086,7,30,0,0,2086, + 454,1,0,0,0,2087,2088,7,31,0,0,2088,456,1,0,0,0,2089,2090,7,32,0, + 0,2090,458,1,0,0,0,2091,2092,7,33,0,0,2092,460,1,0,0,0,2093,2094, + 5,45,0,0,2094,2095,5,62,0,0,2095,462,1,0,0,0,2096,2097,5,42,0,0, + 2097,464,1,0,0,0,2098,2099,5,96,0,0,2099,466,1,0,0,0,2100,2101,5, + 92,0,0,2101,468,1,0,0,0,2102,2103,5,58,0,0,2103,470,1,0,0,0,2104, + 2105,5,44,0,0,2105,472,1,0,0,0,2106,2107,5,124,0,0,2107,2108,5,124, + 0,0,2108,474,1,0,0,0,2109,2110,5,45,0,0,2110,476,1,0,0,0,2111,2112, + 5,36,0,0,2112,478,1,0,0,0,2113,2114,5,46,0,0,2114,480,1,0,0,0,2115, + 2116,5,61,0,0,2116,2117,5,61,0,0,2117,482,1,0,0,0,2118,2119,5,61, + 0,0,2119,484,1,0,0,0,2120,2121,5,62,0,0,2121,2122,5,61,0,0,2122, + 486,1,0,0,0,2123,2124,5,62,0,0,2124,488,1,0,0,0,2125,2126,5,35,0, + 0,2126,490,1,0,0,0,2127,2128,5,126,0,0,2128,2129,5,42,0,0,2129,492, + 1,0,0,0,2130,2131,5,61,0,0,2131,2132,5,126,0,0,2132,2133,5,42,0, + 0,2133,494,1,0,0,0,2134,2135,5,123,0,0,2135,496,1,0,0,0,2136,2137, + 5,91,0,0,2137,498,1,0,0,0,2138,2139,5,40,0,0,2139,500,1,0,0,0,2140, + 2141,5,60,0,0,2141,2142,5,61,0,0,2142,502,1,0,0,0,2143,2144,5,60, + 0,0,2144,504,1,0,0,0,2145,2146,5,33,0,0,2146,2150,5,61,0,0,2147, + 2148,5,60,0,0,2148,2150,5,62,0,0,2149,2145,1,0,0,0,2149,2147,1,0, + 0,0,2150,506,1,0,0,0,2151,2152,5,33,0,0,2152,2153,5,126,0,0,2153, + 2154,5,42,0,0,2154,508,1,0,0,0,2155,2156,5,33,0,0,2156,2157,5,126, + 0,0,2157,510,1,0,0,0,2158,2159,5,37,0,0,2159,512,1,0,0,0,2160,2161, + 5,43,0,0,2161,514,1,0,0,0,2162,2163,5,63,0,0,2163,516,1,0,0,0,2164, + 2165,5,34,0,0,2165,518,1,0,0,0,2166,2167,5,39,0,0,2167,520,1,0,0, + 0,2168,2169,5,126,0,0,2169,522,1,0,0,0,2170,2171,5,61,0,0,2171,2172, + 5,126,0,0,2172,524,1,0,0,0,2173,2174,5,125,0,0,2174,526,1,0,0,0, + 2175,2176,5,93,0,0,2176,528,1,0,0,0,2177,2178,5,41,0,0,2178,530, + 1,0,0,0,2179,2180,5,59,0,0,2180,532,1,0,0,0,2181,2182,5,47,0,0,2182, + 534,1,0,0,0,2183,2184,5,95,0,0,2184,536,1,0,0,0,2185,2186,5,47,0, + 0,2186,2187,5,42,0,0,2187,2191,1,0,0,0,2188,2190,9,0,0,0,2189,2188, + 1,0,0,0,2190,2193,1,0,0,0,2191,2192,1,0,0,0,2191,2189,1,0,0,0,2192, + 2194,1,0,0,0,2193,2191,1,0,0,0,2194,2195,5,42,0,0,2195,2196,5,47, + 0,0,2196,2197,1,0,0,0,2197,2198,6,268,0,0,2198,538,1,0,0,0,2199, + 2200,5,45,0,0,2200,2201,5,45,0,0,2201,2205,1,0,0,0,2202,2204,8,34, + 0,0,2203,2202,1,0,0,0,2204,2207,1,0,0,0,2205,2203,1,0,0,0,2205,2206, + 1,0,0,0,2206,2209,1,0,0,0,2207,2205,1,0,0,0,2208,2210,7,35,0,0,2209, + 2208,1,0,0,0,2210,2211,1,0,0,0,2211,2212,6,269,0,0,2212,540,1,0, + 0,0,2213,2214,7,36,0,0,2214,2215,1,0,0,0,2215,2216,6,270,1,0,2216, + 542,1,0,0,0,39,0,605,1110,1824,1867,1872,1878,1880,1889,1891,1902, + 1904,1909,1916,1921,1925,1930,1935,1939,1944,1951,1957,1962,1969, + 1974,1980,1985,1987,1993,1998,2005,2013,2015,2026,2028,2149,2191, + 2205,2209,2,6,0,0,0,1,0 ] class HogQLLexer(Lexer): @@ -1106,26 +1119,32 @@ class HogQLLexer(Lexer): GT_EQ = 213 GT = 214 HASH = 215 - LBRACE = 216 - LBRACKET = 217 - LPAREN = 218 - LT_EQ = 219 - LT = 220 - NOT_EQ = 221 - PERCENT = 222 - PLUS = 223 - QUERY = 224 - QUOTE_DOUBLE = 225 - QUOTE_SINGLE = 226 - RBRACE = 227 - RBRACKET = 228 - RPAREN = 229 - SEMICOLON = 230 - SLASH = 231 - UNDERSCORE = 232 - MULTI_LINE_COMMENT = 233 - SINGLE_LINE_COMMENT = 234 - WHITESPACE = 235 + IREGEX_SINGLE = 216 + IREGEX_DOUBLE = 217 + LBRACE = 218 + LBRACKET = 219 + LPAREN = 220 + LT_EQ = 221 + LT = 222 + NOT_EQ = 223 + NOT_IREGEX = 224 + NOT_REGEX = 225 + PERCENT = 226 + PLUS = 227 + QUERY = 228 + QUOTE_DOUBLE = 229 + QUOTE_SINGLE = 230 + REGEX_SINGLE = 231 + REGEX_DOUBLE = 232 + RBRACE = 233 + RBRACKET = 234 + RPAREN = 235 + SEMICOLON = 236 + SLASH = 237 + UNDERSCORE = 238 + MULTI_LINE_COMMENT = 239 + SINGLE_LINE_COMMENT = 240 + WHITESPACE = 241 channelNames = [ u"DEFAULT_TOKEN_CHANNEL", u"HIDDEN" ] @@ -1134,8 +1153,9 @@ class HogQLLexer(Lexer): literalNames = [ "", "'false'", "'true'", "'->'", "'*'", "'`'", "'\\'", "':'", "','", "'||'", "'-'", "'$'", "'.'", "'=='", "'='", "'>='", "'>'", "'#'", - "'{'", "'['", "'('", "'<='", "'<'", "'%'", "'+'", "'?'", "'\"'", - "'''", "'}'", "']'", "')'", "';'", "'/'", "'_'" ] + "'~*'", "'=~*'", "'{'", "'['", "'('", "'<='", "'<'", "'!~*'", + "'!~'", "'%'", "'+'", "'?'", "'\"'", "'''", "'~'", "'=~'", "'}'", + "']'", "')'", "';'", "'/'", "'_'" ] symbolicNames = [ "", "ADD", "AFTER", "ALIAS", "ALL", "ALTER", "AND", "ANTI", "ANY", @@ -1171,10 +1191,11 @@ class HogQLLexer(Lexer): "DECIMAL_LITERAL", "HEXADECIMAL_LITERAL", "STRING_LITERAL", "PLACEHOLDER", "ARROW", "ASTERISK", "BACKQUOTE", "BACKSLASH", "COLON", "COMMA", "CONCAT", "DASH", "DOLLAR", "DOT", "EQ_DOUBLE", - "EQ_SINGLE", "GT_EQ", "GT", "HASH", "LBRACE", "LBRACKET", "LPAREN", - "LT_EQ", "LT", "NOT_EQ", "PERCENT", "PLUS", "QUERY", "QUOTE_DOUBLE", - "QUOTE_SINGLE", "RBRACE", "RBRACKET", "RPAREN", "SEMICOLON", - "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", + "EQ_SINGLE", "GT_EQ", "GT", "HASH", "IREGEX_SINGLE", "IREGEX_DOUBLE", + "LBRACE", "LBRACKET", "LPAREN", "LT_EQ", "LT", "NOT_EQ", "NOT_IREGEX", + "NOT_REGEX", "PERCENT", "PLUS", "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", + "REGEX_SINGLE", "REGEX_DOUBLE", "RBRACE", "RBRACKET", "RPAREN", + "SEMICOLON", "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", "WHITESPACE" ] ruleNames = [ "ADD", "AFTER", "ALIAS", "ALL", "ALTER", "AND", "ANTI", @@ -1216,11 +1237,13 @@ class HogQLLexer(Lexer): "W", "X", "Y", "Z", "LETTER", "OCT_DIGIT", "DEC_DIGIT", "HEX_DIGIT", "ARROW", "ASTERISK", "BACKQUOTE", "BACKSLASH", "COLON", "COMMA", "CONCAT", "DASH", "DOLLAR", "DOT", "EQ_DOUBLE", - "EQ_SINGLE", "GT_EQ", "GT", "HASH", "LBRACE", "LBRACKET", - "LPAREN", "LT_EQ", "LT", "NOT_EQ", "PERCENT", "PLUS", - "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", "RBRACE", "RBRACKET", - "RPAREN", "SEMICOLON", "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", - "SINGLE_LINE_COMMENT", "WHITESPACE" ] + "EQ_SINGLE", "GT_EQ", "GT", "HASH", "IREGEX_SINGLE", "IREGEX_DOUBLE", + "LBRACE", "LBRACKET", "LPAREN", "LT_EQ", "LT", "NOT_EQ", + "NOT_IREGEX", "NOT_REGEX", "PERCENT", "PLUS", "QUERY", + "QUOTE_DOUBLE", "QUOTE_SINGLE", "REGEX_SINGLE", "REGEX_DOUBLE", + "RBRACE", "RBRACKET", "RPAREN", "SEMICOLON", "SLASH", + "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", + "WHITESPACE" ] grammarFileName = "HogQLLexer.g4" diff --git a/posthog/hogql/grammar/HogQLLexer.tokens b/posthog/hogql/grammar/HogQLLexer.tokens index a8a2b718a1a0b..7380f362ead3a 100644 --- a/posthog/hogql/grammar/HogQLLexer.tokens +++ b/posthog/hogql/grammar/HogQLLexer.tokens @@ -213,26 +213,32 @@ EQ_SINGLE=212 GT_EQ=213 GT=214 HASH=215 -LBRACE=216 -LBRACKET=217 -LPAREN=218 -LT_EQ=219 -LT=220 -NOT_EQ=221 -PERCENT=222 -PLUS=223 -QUERY=224 -QUOTE_DOUBLE=225 -QUOTE_SINGLE=226 -RBRACE=227 -RBRACKET=228 -RPAREN=229 -SEMICOLON=230 -SLASH=231 -UNDERSCORE=232 -MULTI_LINE_COMMENT=233 -SINGLE_LINE_COMMENT=234 -WHITESPACE=235 +IREGEX_SINGLE=216 +IREGEX_DOUBLE=217 +LBRACE=218 +LBRACKET=219 +LPAREN=220 +LT_EQ=221 +LT=222 +NOT_EQ=223 +NOT_IREGEX=224 +NOT_REGEX=225 +PERCENT=226 +PLUS=227 +QUERY=228 +QUOTE_DOUBLE=229 +QUOTE_SINGLE=230 +REGEX_SINGLE=231 +REGEX_DOUBLE=232 +RBRACE=233 +RBRACKET=234 +RPAREN=235 +SEMICOLON=236 +SLASH=237 +UNDERSCORE=238 +MULTI_LINE_COMMENT=239 +SINGLE_LINE_COMMENT=240 +WHITESPACE=241 'false'=191 'true'=192 '->'=201 @@ -250,19 +256,25 @@ WHITESPACE=235 '>='=213 '>'=214 '#'=215 -'{'=216 -'['=217 -'('=218 -'<='=219 -'<'=220 -'%'=222 -'+'=223 -'?'=224 -'"'=225 -'\''=226 -'}'=227 -']'=228 -')'=229 -';'=230 -'/'=231 -'_'=232 +'~*'=216 +'=~*'=217 +'{'=218 +'['=219 +'('=220 +'<='=221 +'<'=222 +'!~*'=224 +'!~'=225 +'%'=226 +'+'=227 +'?'=228 +'"'=229 +'\''=230 +'~'=231 +'=~'=232 +'}'=233 +']'=234 +')'=235 +';'=236 +'/'=237 +'_'=238 diff --git a/posthog/hogql/grammar/HogQLParser.g4 b/posthog/hogql/grammar/HogQLParser.g4 index 94ab9b48ca0ef..e33b8679bfcda 100644 --- a/posthog/hogql/grammar/HogQLParser.g4 +++ b/posthog/hogql/grammar/HogQLParser.g4 @@ -116,24 +116,30 @@ columnExpr | columnExpr DOT DECIMAL_LITERAL # ColumnExprTupleAccess | columnExpr DOT identifier # ColumnExprPropertyAccess | DASH columnExpr # ColumnExprNegate - | left=columnExpr ( operator=ASTERISK // multiply - | operator=SLASH // divide - | operator=PERCENT // modulo - ) right=columnExpr # ColumnExprPrecedence1 - | left=columnExpr ( operator=PLUS // plus - | operator=DASH // minus - | operator=CONCAT // concat - ) right=columnExpr # ColumnExprPrecedence2 - | left=columnExpr ( operator=EQ_DOUBLE // equals - | operator=EQ_SINGLE // equals - | operator=NOT_EQ // notEquals - | operator=LT_EQ // lessOrEquals - | operator=LT // less - | operator=GT_EQ // greaterOrEquals - | operator=GT // greater - | operator=NOT? IN COHORT? // in, notIn; cohort() - | operator=NOT? (LIKE | ILIKE) // like, notLike, ilike, notILike - ) right=columnExpr # ColumnExprPrecedence3 + | left=columnExpr ( operator=ASTERISK // * + | operator=SLASH // / + | operator=PERCENT // % + ) right=columnExpr # ColumnExprPrecedence1 + | left=columnExpr ( operator=PLUS // + + | operator=DASH // - + | operator=CONCAT // || + ) right=columnExpr # ColumnExprPrecedence2 + | left=columnExpr ( operator=EQ_DOUBLE // = + | operator=EQ_SINGLE // == + | operator=NOT_EQ // != + | operator=LT_EQ // <= + | operator=LT // < + | operator=GT_EQ // >= + | operator=GT // > + | operator=NOT? IN COHORT? // in, not in; in cohort; not in cohort + | operator=NOT? (LIKE | ILIKE) // like, not like, ilike, not ilike + | operator=REGEX_SINGLE // ~ + | operator=REGEX_DOUBLE // =~ + | operator=NOT_REGEX // !~ + | operator=IREGEX_SINGLE // ~* + | operator=IREGEX_DOUBLE // =~* + | operator=NOT_IREGEX // !~* + ) right=columnExpr # ColumnExprPrecedence3 | columnExpr IS NOT? NULL_SQL # ColumnExprIsNull | NOT columnExpr # ColumnExprNot | columnExpr AND columnExpr # ColumnExprAnd diff --git a/posthog/hogql/grammar/HogQLParser.interp b/posthog/hogql/grammar/HogQLParser.interp index 46f630dd0809f..b0fb5c55a3382 100644 --- a/posthog/hogql/grammar/HogQLParser.interp +++ b/posthog/hogql/grammar/HogQLParser.interp @@ -215,17 +215,23 @@ null '>=' '>' '#' +'~*' +'=~*' '{' '[' '(' '<=' '<' null +'!~*' +'!~' '%' '+' '?' '"' '\'' +'~' +'=~' '}' ']' ')' @@ -453,17 +459,23 @@ EQ_SINGLE GT_EQ GT HASH +IREGEX_SINGLE +IREGEX_DOUBLE LBRACE LBRACKET LPAREN LT_EQ LT NOT_EQ +NOT_IREGEX +NOT_REGEX PERCENT PLUS QUERY QUOTE_DOUBLE QUOTE_SINGLE +REGEX_SINGLE +REGEX_DOUBLE RBRACE RBRACKET RPAREN @@ -538,4 +550,4 @@ enumValue atn: -[4, 1, 235, 916, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 1, 0, 1, 0, 3, 0, 123, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 131, 8, 1, 10, 1, 12, 1, 134, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 141, 8, 2, 1, 3, 3, 3, 144, 8, 3, 1, 3, 1, 3, 3, 3, 148, 8, 3, 1, 3, 3, 3, 151, 8, 3, 1, 3, 1, 3, 3, 3, 155, 8, 3, 1, 3, 3, 3, 158, 8, 3, 1, 3, 3, 3, 161, 8, 3, 1, 3, 3, 3, 164, 8, 3, 1, 3, 3, 3, 167, 8, 3, 1, 3, 1, 3, 3, 3, 171, 8, 3, 1, 3, 1, 3, 3, 3, 175, 8, 3, 1, 3, 3, 3, 178, 8, 3, 1, 3, 3, 3, 181, 8, 3, 1, 3, 3, 3, 184, 8, 3, 1, 3, 1, 3, 3, 3, 188, 8, 3, 1, 3, 3, 3, 191, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 200, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 3, 7, 206, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 225, 8, 8, 10, 8, 12, 8, 228, 9, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 244, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 261, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 267, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 273, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 284, 8, 15, 3, 15, 286, 8, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 3, 18, 297, 8, 18, 1, 18, 3, 18, 300, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 306, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 314, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 320, 8, 18, 10, 18, 12, 18, 323, 9, 18, 1, 19, 3, 19, 326, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 331, 8, 19, 1, 19, 3, 19, 334, 8, 19, 1, 19, 3, 19, 337, 8, 19, 1, 19, 1, 19, 3, 19, 341, 8, 19, 1, 19, 1, 19, 3, 19, 345, 8, 19, 1, 19, 3, 19, 348, 8, 19, 3, 19, 350, 8, 19, 1, 19, 3, 19, 353, 8, 19, 1, 19, 1, 19, 3, 19, 357, 8, 19, 1, 19, 1, 19, 3, 19, 361, 8, 19, 1, 19, 3, 19, 364, 8, 19, 3, 19, 366, 8, 19, 3, 19, 368, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 373, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 384, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 390, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 395, 8, 23, 10, 23, 12, 23, 398, 9, 23, 1, 24, 1, 24, 3, 24, 402, 8, 24, 1, 24, 1, 24, 3, 24, 406, 8, 24, 1, 24, 1, 24, 3, 24, 410, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 415, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 420, 8, 26, 10, 26, 12, 26, 423, 9, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 430, 8, 28, 1, 28, 3, 28, 433, 8, 28, 1, 28, 3, 28, 436, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 455, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 469, 8, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 483, 8, 35, 10, 35, 12, 35, 486, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 495, 8, 35, 10, 35, 12, 35, 498, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 507, 8, 35, 10, 35, 12, 35, 510, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 517, 8, 35, 1, 35, 1, 35, 3, 35, 521, 8, 35, 1, 36, 1, 36, 1, 36, 5, 36, 526, 8, 36, 10, 36, 12, 36, 529, 9, 36, 1, 37, 1, 37, 1, 37, 3, 37, 534, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 4, 37, 541, 8, 37, 11, 37, 12, 37, 542, 1, 37, 1, 37, 3, 37, 547, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 578, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 595, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 607, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 617, 8, 37, 1, 37, 3, 37, 620, 8, 37, 1, 37, 1, 37, 3, 37, 624, 8, 37, 1, 37, 3, 37, 627, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 639, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 656, 8, 37, 1, 37, 1, 37, 3, 37, 660, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 666, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 673, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 685, 8, 37, 1, 37, 1, 37, 3, 37, 689, 8, 37, 1, 37, 3, 37, 692, 8, 37, 1, 37, 3, 37, 695, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 706, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 733, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 742, 8, 37, 5, 37, 744, 8, 37, 10, 37, 12, 37, 747, 9, 37, 1, 38, 1, 38, 1, 38, 5, 38, 752, 8, 38, 10, 38, 12, 38, 755, 9, 38, 1, 39, 1, 39, 3, 39, 759, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 765, 8, 40, 10, 40, 12, 40, 768, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 775, 8, 40, 10, 40, 12, 40, 778, 9, 40, 3, 40, 780, 8, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 788, 8, 41, 10, 41, 12, 41, 791, 9, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 803, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 809, 8, 43, 1, 43, 3, 43, 812, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 817, 8, 44, 10, 44, 12, 44, 820, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 829, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 835, 8, 45, 5, 45, 837, 8, 45, 10, 45, 12, 45, 840, 9, 45, 1, 46, 1, 46, 1, 46, 3, 46, 845, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 3, 47, 852, 8, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 5, 48, 859, 8, 48, 10, 48, 12, 48, 862, 9, 48, 1, 49, 1, 49, 1, 49, 3, 49, 867, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 877, 8, 51, 3, 51, 879, 8, 51, 1, 52, 3, 52, 882, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 890, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 895, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 905, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 910, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 0, 3, 36, 74, 90, 60, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 0, 16, 2, 0, 32, 32, 141, 141, 2, 0, 84, 84, 96, 96, 3, 0, 4, 4, 8, 8, 12, 12, 4, 0, 4, 4, 7, 8, 12, 12, 147, 147, 2, 0, 96, 96, 140, 140, 2, 0, 4, 4, 8, 8, 2, 0, 11, 11, 42, 43, 2, 0, 62, 62, 93, 93, 2, 0, 133, 133, 143, 143, 3, 0, 17, 17, 95, 95, 170, 170, 2, 0, 79, 79, 98, 98, 1, 0, 196, 197, 2, 0, 208, 208, 223, 223, 8, 0, 37, 37, 76, 76, 108, 108, 110, 110, 132, 132, 145, 145, 185, 185, 190, 190, 13, 0, 2, 24, 26, 36, 38, 75, 77, 81, 83, 107, 109, 109, 111, 112, 114, 115, 117, 130, 133, 144, 146, 184, 186, 189, 191, 192, 4, 0, 36, 36, 62, 62, 77, 77, 91, 91, 1029, 0, 122, 1, 0, 0, 0, 2, 126, 1, 0, 0, 0, 4, 140, 1, 0, 0, 0, 6, 143, 1, 0, 0, 0, 8, 192, 1, 0, 0, 0, 10, 195, 1, 0, 0, 0, 12, 201, 1, 0, 0, 0, 14, 205, 1, 0, 0, 0, 16, 211, 1, 0, 0, 0, 18, 229, 1, 0, 0, 0, 20, 232, 1, 0, 0, 0, 22, 235, 1, 0, 0, 0, 24, 245, 1, 0, 0, 0, 26, 248, 1, 0, 0, 0, 28, 252, 1, 0, 0, 0, 30, 285, 1, 0, 0, 0, 32, 287, 1, 0, 0, 0, 34, 290, 1, 0, 0, 0, 36, 305, 1, 0, 0, 0, 38, 367, 1, 0, 0, 0, 40, 372, 1, 0, 0, 0, 42, 383, 1, 0, 0, 0, 44, 385, 1, 0, 0, 0, 46, 391, 1, 0, 0, 0, 48, 399, 1, 0, 0, 0, 50, 411, 1, 0, 0, 0, 52, 416, 1, 0, 0, 0, 54, 424, 1, 0, 0, 0, 56, 429, 1, 0, 0, 0, 58, 437, 1, 0, 0, 0, 60, 441, 1, 0, 0, 0, 62, 445, 1, 0, 0, 0, 64, 454, 1, 0, 0, 0, 66, 468, 1, 0, 0, 0, 68, 470, 1, 0, 0, 0, 70, 520, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 659, 1, 0, 0, 0, 76, 748, 1, 0, 0, 0, 78, 758, 1, 0, 0, 0, 80, 779, 1, 0, 0, 0, 82, 784, 1, 0, 0, 0, 84, 802, 1, 0, 0, 0, 86, 811, 1, 0, 0, 0, 88, 813, 1, 0, 0, 0, 90, 828, 1, 0, 0, 0, 92, 841, 1, 0, 0, 0, 94, 851, 1, 0, 0, 0, 96, 855, 1, 0, 0, 0, 98, 866, 1, 0, 0, 0, 100, 868, 1, 0, 0, 0, 102, 878, 1, 0, 0, 0, 104, 881, 1, 0, 0, 0, 106, 894, 1, 0, 0, 0, 108, 896, 1, 0, 0, 0, 110, 898, 1, 0, 0, 0, 112, 900, 1, 0, 0, 0, 114, 904, 1, 0, 0, 0, 116, 909, 1, 0, 0, 0, 118, 911, 1, 0, 0, 0, 120, 123, 3, 2, 1, 0, 121, 123, 3, 6, 3, 0, 122, 120, 1, 0, 0, 0, 122, 121, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 124, 125, 5, 0, 0, 1, 125, 1, 1, 0, 0, 0, 126, 132, 3, 4, 2, 0, 127, 128, 5, 176, 0, 0, 128, 129, 5, 4, 0, 0, 129, 131, 3, 4, 2, 0, 130, 127, 1, 0, 0, 0, 131, 134, 1, 0, 0, 0, 132, 130, 1, 0, 0, 0, 132, 133, 1, 0, 0, 0, 133, 3, 1, 0, 0, 0, 134, 132, 1, 0, 0, 0, 135, 141, 3, 6, 3, 0, 136, 137, 5, 218, 0, 0, 137, 138, 3, 2, 1, 0, 138, 139, 5, 229, 0, 0, 139, 141, 1, 0, 0, 0, 140, 135, 1, 0, 0, 0, 140, 136, 1, 0, 0, 0, 141, 5, 1, 0, 0, 0, 142, 144, 3, 8, 4, 0, 143, 142, 1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 145, 1, 0, 0, 0, 145, 147, 5, 146, 0, 0, 146, 148, 5, 49, 0, 0, 147, 146, 1, 0, 0, 0, 147, 148, 1, 0, 0, 0, 148, 150, 1, 0, 0, 0, 149, 151, 3, 10, 5, 0, 150, 149, 1, 0, 0, 0, 150, 151, 1, 0, 0, 0, 151, 152, 1, 0, 0, 0, 152, 154, 3, 72, 36, 0, 153, 155, 3, 12, 6, 0, 154, 153, 1, 0, 0, 0, 154, 155, 1, 0, 0, 0, 155, 157, 1, 0, 0, 0, 156, 158, 3, 14, 7, 0, 157, 156, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 160, 1, 0, 0, 0, 159, 161, 3, 18, 9, 0, 160, 159, 1, 0, 0, 0, 160, 161, 1, 0, 0, 0, 161, 163, 1, 0, 0, 0, 162, 164, 3, 20, 10, 0, 163, 162, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 166, 1, 0, 0, 0, 165, 167, 3, 22, 11, 0, 166, 165, 1, 0, 0, 0, 166, 167, 1, 0, 0, 0, 167, 170, 1, 0, 0, 0, 168, 169, 5, 189, 0, 0, 169, 171, 7, 0, 0, 0, 170, 168, 1, 0, 0, 0, 170, 171, 1, 0, 0, 0, 171, 174, 1, 0, 0, 0, 172, 173, 5, 189, 0, 0, 173, 175, 5, 169, 0, 0, 174, 172, 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 177, 1, 0, 0, 0, 176, 178, 3, 24, 12, 0, 177, 176, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 180, 1, 0, 0, 0, 179, 181, 3, 16, 8, 0, 180, 179, 1, 0, 0, 0, 180, 181, 1, 0, 0, 0, 181, 183, 1, 0, 0, 0, 182, 184, 3, 26, 13, 0, 183, 182, 1, 0, 0, 0, 183, 184, 1, 0, 0, 0, 184, 187, 1, 0, 0, 0, 185, 188, 3, 30, 15, 0, 186, 188, 3, 32, 16, 0, 187, 185, 1, 0, 0, 0, 187, 186, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 190, 1, 0, 0, 0, 189, 191, 3, 34, 17, 0, 190, 189, 1, 0, 0, 0, 190, 191, 1, 0, 0, 0, 191, 7, 1, 0, 0, 0, 192, 193, 5, 189, 0, 0, 193, 194, 3, 82, 41, 0, 194, 9, 1, 0, 0, 0, 195, 196, 5, 168, 0, 0, 196, 199, 5, 197, 0, 0, 197, 198, 5, 189, 0, 0, 198, 200, 5, 164, 0, 0, 199, 197, 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 11, 1, 0, 0, 0, 201, 202, 5, 68, 0, 0, 202, 203, 3, 36, 18, 0, 203, 13, 1, 0, 0, 0, 204, 206, 7, 1, 0, 0, 205, 204, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 208, 5, 9, 0, 0, 208, 209, 5, 90, 0, 0, 209, 210, 3, 72, 36, 0, 210, 15, 1, 0, 0, 0, 211, 212, 5, 188, 0, 0, 212, 213, 3, 116, 58, 0, 213, 214, 5, 10, 0, 0, 214, 215, 5, 218, 0, 0, 215, 216, 3, 56, 28, 0, 216, 226, 5, 229, 0, 0, 217, 218, 5, 206, 0, 0, 218, 219, 3, 116, 58, 0, 219, 220, 5, 10, 0, 0, 220, 221, 5, 218, 0, 0, 221, 222, 3, 56, 28, 0, 222, 223, 5, 229, 0, 0, 223, 225, 1, 0, 0, 0, 224, 217, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 17, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 5, 129, 0, 0, 230, 231, 3, 74, 37, 0, 231, 19, 1, 0, 0, 0, 232, 233, 5, 187, 0, 0, 233, 234, 3, 74, 37, 0, 234, 21, 1, 0, 0, 0, 235, 236, 5, 73, 0, 0, 236, 243, 5, 18, 0, 0, 237, 238, 7, 0, 0, 0, 238, 239, 5, 218, 0, 0, 239, 240, 3, 72, 36, 0, 240, 241, 5, 229, 0, 0, 241, 244, 1, 0, 0, 0, 242, 244, 3, 72, 36, 0, 243, 237, 1, 0, 0, 0, 243, 242, 1, 0, 0, 0, 244, 23, 1, 0, 0, 0, 245, 246, 5, 74, 0, 0, 246, 247, 3, 74, 37, 0, 247, 25, 1, 0, 0, 0, 248, 249, 5, 122, 0, 0, 249, 250, 5, 18, 0, 0, 250, 251, 3, 46, 23, 0, 251, 27, 1, 0, 0, 0, 252, 253, 5, 122, 0, 0, 253, 254, 5, 18, 0, 0, 254, 255, 3, 72, 36, 0, 255, 29, 1, 0, 0, 0, 256, 257, 5, 99, 0, 0, 257, 260, 3, 74, 37, 0, 258, 259, 5, 206, 0, 0, 259, 261, 3, 74, 37, 0, 260, 258, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 266, 1, 0, 0, 0, 262, 263, 5, 189, 0, 0, 263, 267, 5, 164, 0, 0, 264, 265, 5, 18, 0, 0, 265, 267, 3, 72, 36, 0, 266, 262, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 286, 1, 0, 0, 0, 268, 269, 5, 99, 0, 0, 269, 272, 3, 74, 37, 0, 270, 271, 5, 189, 0, 0, 271, 273, 5, 164, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 5, 118, 0, 0, 275, 276, 3, 74, 37, 0, 276, 286, 1, 0, 0, 0, 277, 278, 5, 99, 0, 0, 278, 279, 3, 74, 37, 0, 279, 280, 5, 118, 0, 0, 280, 283, 3, 74, 37, 0, 281, 282, 5, 18, 0, 0, 282, 284, 3, 72, 36, 0, 283, 281, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 286, 1, 0, 0, 0, 285, 256, 1, 0, 0, 0, 285, 268, 1, 0, 0, 0, 285, 277, 1, 0, 0, 0, 286, 31, 1, 0, 0, 0, 287, 288, 5, 118, 0, 0, 288, 289, 3, 74, 37, 0, 289, 33, 1, 0, 0, 0, 290, 291, 5, 150, 0, 0, 291, 292, 3, 52, 26, 0, 292, 35, 1, 0, 0, 0, 293, 294, 6, 18, -1, 0, 294, 296, 3, 90, 45, 0, 295, 297, 5, 61, 0, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 44, 22, 0, 299, 298, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 306, 1, 0, 0, 0, 301, 302, 5, 218, 0, 0, 302, 303, 3, 36, 18, 0, 303, 304, 5, 229, 0, 0, 304, 306, 1, 0, 0, 0, 305, 293, 1, 0, 0, 0, 305, 301, 1, 0, 0, 0, 306, 321, 1, 0, 0, 0, 307, 308, 10, 3, 0, 0, 308, 309, 3, 40, 20, 0, 309, 310, 3, 36, 18, 4, 310, 320, 1, 0, 0, 0, 311, 313, 10, 4, 0, 0, 312, 314, 3, 38, 19, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 5, 90, 0, 0, 316, 317, 3, 36, 18, 0, 317, 318, 3, 42, 21, 0, 318, 320, 1, 0, 0, 0, 319, 307, 1, 0, 0, 0, 319, 311, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 37, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 326, 7, 2, 0, 0, 325, 324, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 334, 5, 84, 0, 0, 328, 330, 5, 84, 0, 0, 329, 331, 7, 2, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 334, 7, 2, 0, 0, 333, 325, 1, 0, 0, 0, 333, 328, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 368, 1, 0, 0, 0, 335, 337, 7, 3, 0, 0, 336, 335, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 7, 4, 0, 0, 339, 341, 5, 123, 0, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 350, 1, 0, 0, 0, 342, 344, 7, 4, 0, 0, 343, 345, 5, 123, 0, 0, 344, 343, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 347, 1, 0, 0, 0, 346, 348, 7, 3, 0, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 350, 1, 0, 0, 0, 349, 336, 1, 0, 0, 0, 349, 342, 1, 0, 0, 0, 350, 368, 1, 0, 0, 0, 351, 353, 7, 5, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 356, 5, 69, 0, 0, 355, 357, 5, 123, 0, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 366, 1, 0, 0, 0, 358, 360, 5, 69, 0, 0, 359, 361, 5, 123, 0, 0, 360, 359, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 1, 0, 0, 0, 362, 364, 7, 5, 0, 0, 363, 362, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 352, 1, 0, 0, 0, 365, 358, 1, 0, 0, 0, 366, 368, 1, 0, 0, 0, 367, 333, 1, 0, 0, 0, 367, 349, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 39, 1, 0, 0, 0, 369, 370, 5, 31, 0, 0, 370, 373, 5, 90, 0, 0, 371, 373, 5, 206, 0, 0, 372, 369, 1, 0, 0, 0, 372, 371, 1, 0, 0, 0, 373, 41, 1, 0, 0, 0, 374, 375, 5, 119, 0, 0, 375, 384, 3, 72, 36, 0, 376, 377, 5, 179, 0, 0, 377, 378, 5, 218, 0, 0, 378, 379, 3, 72, 36, 0, 379, 380, 5, 229, 0, 0, 380, 384, 1, 0, 0, 0, 381, 382, 5, 179, 0, 0, 382, 384, 3, 72, 36, 0, 383, 374, 1, 0, 0, 0, 383, 376, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 43, 1, 0, 0, 0, 385, 386, 5, 144, 0, 0, 386, 389, 3, 50, 25, 0, 387, 388, 5, 118, 0, 0, 388, 390, 3, 50, 25, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 45, 1, 0, 0, 0, 391, 396, 3, 48, 24, 0, 392, 393, 5, 206, 0, 0, 393, 395, 3, 48, 24, 0, 394, 392, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 47, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 401, 3, 74, 37, 0, 400, 402, 7, 6, 0, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 404, 5, 117, 0, 0, 404, 406, 7, 7, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 408, 5, 26, 0, 0, 408, 410, 5, 199, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 49, 1, 0, 0, 0, 411, 414, 3, 104, 52, 0, 412, 413, 5, 231, 0, 0, 413, 415, 3, 104, 52, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 51, 1, 0, 0, 0, 416, 421, 3, 54, 27, 0, 417, 418, 5, 206, 0, 0, 418, 420, 3, 54, 27, 0, 419, 417, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 53, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 425, 3, 116, 58, 0, 425, 426, 5, 212, 0, 0, 426, 427, 3, 106, 53, 0, 427, 55, 1, 0, 0, 0, 428, 430, 3, 58, 29, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 432, 1, 0, 0, 0, 431, 433, 3, 60, 30, 0, 432, 431, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 435, 1, 0, 0, 0, 434, 436, 3, 62, 31, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 57, 1, 0, 0, 0, 437, 438, 5, 126, 0, 0, 438, 439, 5, 18, 0, 0, 439, 440, 3, 72, 36, 0, 440, 59, 1, 0, 0, 0, 441, 442, 5, 122, 0, 0, 442, 443, 5, 18, 0, 0, 443, 444, 3, 46, 23, 0, 444, 61, 1, 0, 0, 0, 445, 446, 7, 8, 0, 0, 446, 447, 3, 64, 32, 0, 447, 63, 1, 0, 0, 0, 448, 455, 3, 66, 33, 0, 449, 450, 5, 16, 0, 0, 450, 451, 3, 66, 33, 0, 451, 452, 5, 6, 0, 0, 452, 453, 3, 66, 33, 0, 453, 455, 1, 0, 0, 0, 454, 448, 1, 0, 0, 0, 454, 449, 1, 0, 0, 0, 455, 65, 1, 0, 0, 0, 456, 457, 5, 33, 0, 0, 457, 469, 5, 142, 0, 0, 458, 459, 5, 175, 0, 0, 459, 469, 5, 128, 0, 0, 460, 461, 5, 175, 0, 0, 461, 469, 5, 64, 0, 0, 462, 463, 3, 104, 52, 0, 463, 464, 5, 128, 0, 0, 464, 469, 1, 0, 0, 0, 465, 466, 3, 104, 52, 0, 466, 467, 5, 64, 0, 0, 467, 469, 1, 0, 0, 0, 468, 456, 1, 0, 0, 0, 468, 458, 1, 0, 0, 0, 468, 460, 1, 0, 0, 0, 468, 462, 1, 0, 0, 0, 468, 465, 1, 0, 0, 0, 469, 67, 1, 0, 0, 0, 470, 471, 3, 74, 37, 0, 471, 472, 5, 0, 0, 1, 472, 69, 1, 0, 0, 0, 473, 521, 3, 116, 58, 0, 474, 475, 3, 116, 58, 0, 475, 476, 5, 218, 0, 0, 476, 477, 3, 116, 58, 0, 477, 484, 3, 70, 35, 0, 478, 479, 5, 206, 0, 0, 479, 480, 3, 116, 58, 0, 480, 481, 3, 70, 35, 0, 481, 483, 1, 0, 0, 0, 482, 478, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 487, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 488, 5, 229, 0, 0, 488, 521, 1, 0, 0, 0, 489, 490, 3, 116, 58, 0, 490, 491, 5, 218, 0, 0, 491, 496, 3, 118, 59, 0, 492, 493, 5, 206, 0, 0, 493, 495, 3, 118, 59, 0, 494, 492, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 499, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 5, 229, 0, 0, 500, 521, 1, 0, 0, 0, 501, 502, 3, 116, 58, 0, 502, 503, 5, 218, 0, 0, 503, 508, 3, 70, 35, 0, 504, 505, 5, 206, 0, 0, 505, 507, 3, 70, 35, 0, 506, 504, 1, 0, 0, 0, 507, 510, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 511, 512, 5, 229, 0, 0, 512, 521, 1, 0, 0, 0, 513, 514, 3, 116, 58, 0, 514, 516, 5, 218, 0, 0, 515, 517, 3, 72, 36, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 5, 229, 0, 0, 519, 521, 1, 0, 0, 0, 520, 473, 1, 0, 0, 0, 520, 474, 1, 0, 0, 0, 520, 489, 1, 0, 0, 0, 520, 501, 1, 0, 0, 0, 520, 513, 1, 0, 0, 0, 521, 71, 1, 0, 0, 0, 522, 527, 3, 74, 37, 0, 523, 524, 5, 206, 0, 0, 524, 526, 3, 74, 37, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 73, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 531, 6, 37, -1, 0, 531, 533, 5, 19, 0, 0, 532, 534, 3, 74, 37, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 540, 1, 0, 0, 0, 535, 536, 5, 186, 0, 0, 536, 537, 3, 74, 37, 0, 537, 538, 5, 163, 0, 0, 538, 539, 3, 74, 37, 0, 539, 541, 1, 0, 0, 0, 540, 535, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 545, 5, 52, 0, 0, 545, 547, 3, 74, 37, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 53, 0, 0, 549, 660, 1, 0, 0, 0, 550, 551, 5, 20, 0, 0, 551, 552, 5, 218, 0, 0, 552, 553, 3, 74, 37, 0, 553, 554, 5, 10, 0, 0, 554, 555, 3, 70, 35, 0, 555, 556, 5, 229, 0, 0, 556, 660, 1, 0, 0, 0, 557, 558, 5, 36, 0, 0, 558, 660, 5, 199, 0, 0, 559, 560, 5, 59, 0, 0, 560, 561, 5, 218, 0, 0, 561, 562, 3, 108, 54, 0, 562, 563, 5, 68, 0, 0, 563, 564, 3, 74, 37, 0, 564, 565, 5, 229, 0, 0, 565, 660, 1, 0, 0, 0, 566, 567, 5, 86, 0, 0, 567, 568, 3, 74, 37, 0, 568, 569, 3, 108, 54, 0, 569, 660, 1, 0, 0, 0, 570, 571, 5, 155, 0, 0, 571, 572, 5, 218, 0, 0, 572, 573, 3, 74, 37, 0, 573, 574, 5, 68, 0, 0, 574, 577, 3, 74, 37, 0, 575, 576, 5, 65, 0, 0, 576, 578, 3, 74, 37, 0, 577, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 5, 229, 0, 0, 580, 660, 1, 0, 0, 0, 581, 582, 5, 166, 0, 0, 582, 660, 5, 199, 0, 0, 583, 584, 5, 171, 0, 0, 584, 585, 5, 218, 0, 0, 585, 586, 7, 9, 0, 0, 586, 587, 5, 199, 0, 0, 587, 588, 5, 68, 0, 0, 588, 589, 3, 74, 37, 0, 589, 590, 5, 229, 0, 0, 590, 660, 1, 0, 0, 0, 591, 592, 3, 116, 58, 0, 592, 594, 5, 218, 0, 0, 593, 595, 3, 72, 36, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 229, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 125, 0, 0, 599, 600, 5, 218, 0, 0, 600, 601, 3, 56, 28, 0, 601, 602, 5, 229, 0, 0, 602, 660, 1, 0, 0, 0, 603, 604, 3, 116, 58, 0, 604, 606, 5, 218, 0, 0, 605, 607, 3, 72, 36, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 5, 229, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 125, 0, 0, 611, 612, 3, 116, 58, 0, 612, 660, 1, 0, 0, 0, 613, 619, 3, 116, 58, 0, 614, 616, 5, 218, 0, 0, 615, 617, 3, 72, 36, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 5, 229, 0, 0, 619, 614, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 5, 218, 0, 0, 622, 624, 5, 49, 0, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 627, 3, 76, 38, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 229, 0, 0, 629, 660, 1, 0, 0, 0, 630, 660, 3, 106, 53, 0, 631, 632, 5, 208, 0, 0, 632, 660, 3, 74, 37, 17, 633, 634, 5, 115, 0, 0, 634, 660, 3, 74, 37, 12, 635, 636, 3, 94, 47, 0, 636, 637, 5, 210, 0, 0, 637, 639, 1, 0, 0, 0, 638, 635, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 660, 5, 202, 0, 0, 641, 642, 5, 218, 0, 0, 642, 643, 3, 2, 1, 0, 643, 644, 5, 229, 0, 0, 644, 660, 1, 0, 0, 0, 645, 646, 5, 218, 0, 0, 646, 647, 3, 74, 37, 0, 647, 648, 5, 229, 0, 0, 648, 660, 1, 0, 0, 0, 649, 650, 5, 218, 0, 0, 650, 651, 3, 72, 36, 0, 651, 652, 5, 229, 0, 0, 652, 660, 1, 0, 0, 0, 653, 655, 5, 217, 0, 0, 654, 656, 3, 72, 36, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 5, 228, 0, 0, 658, 660, 3, 86, 43, 0, 659, 530, 1, 0, 0, 0, 659, 550, 1, 0, 0, 0, 659, 557, 1, 0, 0, 0, 659, 559, 1, 0, 0, 0, 659, 566, 1, 0, 0, 0, 659, 570, 1, 0, 0, 0, 659, 581, 1, 0, 0, 0, 659, 583, 1, 0, 0, 0, 659, 591, 1, 0, 0, 0, 659, 603, 1, 0, 0, 0, 659, 613, 1, 0, 0, 0, 659, 630, 1, 0, 0, 0, 659, 631, 1, 0, 0, 0, 659, 633, 1, 0, 0, 0, 659, 638, 1, 0, 0, 0, 659, 641, 1, 0, 0, 0, 659, 645, 1, 0, 0, 0, 659, 649, 1, 0, 0, 0, 659, 653, 1, 0, 0, 0, 659, 658, 1, 0, 0, 0, 660, 745, 1, 0, 0, 0, 661, 665, 10, 16, 0, 0, 662, 666, 5, 202, 0, 0, 663, 666, 5, 231, 0, 0, 664, 666, 5, 222, 0, 0, 665, 662, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 744, 3, 74, 37, 17, 668, 672, 10, 15, 0, 0, 669, 673, 5, 223, 0, 0, 670, 673, 5, 208, 0, 0, 671, 673, 5, 207, 0, 0, 672, 669, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 744, 3, 74, 37, 16, 675, 694, 10, 14, 0, 0, 676, 695, 5, 211, 0, 0, 677, 695, 5, 212, 0, 0, 678, 695, 5, 221, 0, 0, 679, 695, 5, 219, 0, 0, 680, 695, 5, 220, 0, 0, 681, 695, 5, 213, 0, 0, 682, 695, 5, 214, 0, 0, 683, 685, 5, 115, 0, 0, 684, 683, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 5, 80, 0, 0, 687, 689, 5, 25, 0, 0, 688, 687, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 695, 1, 0, 0, 0, 690, 692, 5, 115, 0, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 695, 7, 10, 0, 0, 694, 676, 1, 0, 0, 0, 694, 677, 1, 0, 0, 0, 694, 678, 1, 0, 0, 0, 694, 679, 1, 0, 0, 0, 694, 680, 1, 0, 0, 0, 694, 681, 1, 0, 0, 0, 694, 682, 1, 0, 0, 0, 694, 684, 1, 0, 0, 0, 694, 691, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 744, 3, 74, 37, 15, 697, 698, 10, 11, 0, 0, 698, 699, 5, 6, 0, 0, 699, 744, 3, 74, 37, 12, 700, 701, 10, 10, 0, 0, 701, 702, 5, 121, 0, 0, 702, 744, 3, 74, 37, 11, 703, 705, 10, 9, 0, 0, 704, 706, 5, 115, 0, 0, 705, 704, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 5, 16, 0, 0, 708, 709, 3, 74, 37, 0, 709, 710, 5, 6, 0, 0, 710, 711, 3, 74, 37, 10, 711, 744, 1, 0, 0, 0, 712, 713, 10, 8, 0, 0, 713, 714, 5, 224, 0, 0, 714, 715, 3, 74, 37, 0, 715, 716, 5, 205, 0, 0, 716, 717, 3, 74, 37, 8, 717, 744, 1, 0, 0, 0, 718, 719, 10, 20, 0, 0, 719, 720, 5, 217, 0, 0, 720, 721, 3, 74, 37, 0, 721, 722, 5, 228, 0, 0, 722, 744, 1, 0, 0, 0, 723, 724, 10, 19, 0, 0, 724, 725, 5, 210, 0, 0, 725, 744, 5, 197, 0, 0, 726, 727, 10, 18, 0, 0, 727, 728, 5, 210, 0, 0, 728, 744, 3, 116, 58, 0, 729, 730, 10, 13, 0, 0, 730, 732, 5, 88, 0, 0, 731, 733, 5, 115, 0, 0, 732, 731, 1, 0, 0, 0, 732, 733, 1, 0, 0, 0, 733, 734, 1, 0, 0, 0, 734, 744, 5, 116, 0, 0, 735, 741, 10, 7, 0, 0, 736, 742, 3, 114, 57, 0, 737, 738, 5, 10, 0, 0, 738, 742, 3, 116, 58, 0, 739, 740, 5, 10, 0, 0, 740, 742, 5, 199, 0, 0, 741, 736, 1, 0, 0, 0, 741, 737, 1, 0, 0, 0, 741, 739, 1, 0, 0, 0, 742, 744, 1, 0, 0, 0, 743, 661, 1, 0, 0, 0, 743, 668, 1, 0, 0, 0, 743, 675, 1, 0, 0, 0, 743, 697, 1, 0, 0, 0, 743, 700, 1, 0, 0, 0, 743, 703, 1, 0, 0, 0, 743, 712, 1, 0, 0, 0, 743, 718, 1, 0, 0, 0, 743, 723, 1, 0, 0, 0, 743, 726, 1, 0, 0, 0, 743, 729, 1, 0, 0, 0, 743, 735, 1, 0, 0, 0, 744, 747, 1, 0, 0, 0, 745, 743, 1, 0, 0, 0, 745, 746, 1, 0, 0, 0, 746, 75, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 753, 3, 78, 39, 0, 749, 750, 5, 206, 0, 0, 750, 752, 3, 78, 39, 0, 751, 749, 1, 0, 0, 0, 752, 755, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 753, 754, 1, 0, 0, 0, 754, 77, 1, 0, 0, 0, 755, 753, 1, 0, 0, 0, 756, 759, 3, 80, 40, 0, 757, 759, 3, 74, 37, 0, 758, 756, 1, 0, 0, 0, 758, 757, 1, 0, 0, 0, 759, 79, 1, 0, 0, 0, 760, 761, 5, 218, 0, 0, 761, 766, 3, 116, 58, 0, 762, 763, 5, 206, 0, 0, 763, 765, 3, 116, 58, 0, 764, 762, 1, 0, 0, 0, 765, 768, 1, 0, 0, 0, 766, 764, 1, 0, 0, 0, 766, 767, 1, 0, 0, 0, 767, 769, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 769, 770, 5, 229, 0, 0, 770, 780, 1, 0, 0, 0, 771, 776, 3, 116, 58, 0, 772, 773, 5, 206, 0, 0, 773, 775, 3, 116, 58, 0, 774, 772, 1, 0, 0, 0, 775, 778, 1, 0, 0, 0, 776, 774, 1, 0, 0, 0, 776, 777, 1, 0, 0, 0, 777, 780, 1, 0, 0, 0, 778, 776, 1, 0, 0, 0, 779, 760, 1, 0, 0, 0, 779, 771, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 5, 201, 0, 0, 782, 783, 3, 74, 37, 0, 783, 81, 1, 0, 0, 0, 784, 789, 3, 84, 42, 0, 785, 786, 5, 206, 0, 0, 786, 788, 3, 84, 42, 0, 787, 785, 1, 0, 0, 0, 788, 791, 1, 0, 0, 0, 789, 787, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 83, 1, 0, 0, 0, 791, 789, 1, 0, 0, 0, 792, 793, 3, 116, 58, 0, 793, 794, 5, 10, 0, 0, 794, 795, 5, 218, 0, 0, 795, 796, 3, 2, 1, 0, 796, 797, 5, 229, 0, 0, 797, 803, 1, 0, 0, 0, 798, 799, 3, 74, 37, 0, 799, 800, 5, 10, 0, 0, 800, 801, 3, 116, 58, 0, 801, 803, 1, 0, 0, 0, 802, 792, 1, 0, 0, 0, 802, 798, 1, 0, 0, 0, 803, 85, 1, 0, 0, 0, 804, 812, 5, 200, 0, 0, 805, 806, 3, 94, 47, 0, 806, 807, 5, 210, 0, 0, 807, 809, 1, 0, 0, 0, 808, 805, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 810, 1, 0, 0, 0, 810, 812, 3, 88, 44, 0, 811, 804, 1, 0, 0, 0, 811, 808, 1, 0, 0, 0, 812, 87, 1, 0, 0, 0, 813, 818, 3, 116, 58, 0, 814, 815, 5, 210, 0, 0, 815, 817, 3, 116, 58, 0, 816, 814, 1, 0, 0, 0, 817, 820, 1, 0, 0, 0, 818, 816, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 89, 1, 0, 0, 0, 820, 818, 1, 0, 0, 0, 821, 822, 6, 45, -1, 0, 822, 829, 3, 94, 47, 0, 823, 829, 3, 92, 46, 0, 824, 825, 5, 218, 0, 0, 825, 826, 3, 2, 1, 0, 826, 827, 5, 229, 0, 0, 827, 829, 1, 0, 0, 0, 828, 821, 1, 0, 0, 0, 828, 823, 1, 0, 0, 0, 828, 824, 1, 0, 0, 0, 829, 838, 1, 0, 0, 0, 830, 834, 10, 1, 0, 0, 831, 835, 3, 114, 57, 0, 832, 833, 5, 10, 0, 0, 833, 835, 3, 116, 58, 0, 834, 831, 1, 0, 0, 0, 834, 832, 1, 0, 0, 0, 835, 837, 1, 0, 0, 0, 836, 830, 1, 0, 0, 0, 837, 840, 1, 0, 0, 0, 838, 836, 1, 0, 0, 0, 838, 839, 1, 0, 0, 0, 839, 91, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 842, 3, 116, 58, 0, 842, 844, 5, 218, 0, 0, 843, 845, 3, 96, 48, 0, 844, 843, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 846, 1, 0, 0, 0, 846, 847, 5, 229, 0, 0, 847, 93, 1, 0, 0, 0, 848, 849, 3, 100, 50, 0, 849, 850, 5, 210, 0, 0, 850, 852, 1, 0, 0, 0, 851, 848, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 1, 0, 0, 0, 853, 854, 3, 116, 58, 0, 854, 95, 1, 0, 0, 0, 855, 860, 3, 98, 49, 0, 856, 857, 5, 206, 0, 0, 857, 859, 3, 98, 49, 0, 858, 856, 1, 0, 0, 0, 859, 862, 1, 0, 0, 0, 860, 858, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 97, 1, 0, 0, 0, 862, 860, 1, 0, 0, 0, 863, 867, 3, 88, 44, 0, 864, 867, 3, 92, 46, 0, 865, 867, 3, 106, 53, 0, 866, 863, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 866, 865, 1, 0, 0, 0, 867, 99, 1, 0, 0, 0, 868, 869, 3, 116, 58, 0, 869, 101, 1, 0, 0, 0, 870, 879, 5, 195, 0, 0, 871, 872, 5, 210, 0, 0, 872, 879, 7, 11, 0, 0, 873, 874, 5, 197, 0, 0, 874, 876, 5, 210, 0, 0, 875, 877, 7, 11, 0, 0, 876, 875, 1, 0, 0, 0, 876, 877, 1, 0, 0, 0, 877, 879, 1, 0, 0, 0, 878, 870, 1, 0, 0, 0, 878, 871, 1, 0, 0, 0, 878, 873, 1, 0, 0, 0, 879, 103, 1, 0, 0, 0, 880, 882, 7, 12, 0, 0, 881, 880, 1, 0, 0, 0, 881, 882, 1, 0, 0, 0, 882, 889, 1, 0, 0, 0, 883, 890, 3, 102, 51, 0, 884, 890, 5, 196, 0, 0, 885, 890, 5, 197, 0, 0, 886, 890, 5, 198, 0, 0, 887, 890, 5, 82, 0, 0, 888, 890, 5, 113, 0, 0, 889, 883, 1, 0, 0, 0, 889, 884, 1, 0, 0, 0, 889, 885, 1, 0, 0, 0, 889, 886, 1, 0, 0, 0, 889, 887, 1, 0, 0, 0, 889, 888, 1, 0, 0, 0, 890, 105, 1, 0, 0, 0, 891, 895, 3, 104, 52, 0, 892, 895, 5, 199, 0, 0, 893, 895, 5, 116, 0, 0, 894, 891, 1, 0, 0, 0, 894, 892, 1, 0, 0, 0, 894, 893, 1, 0, 0, 0, 895, 107, 1, 0, 0, 0, 896, 897, 7, 13, 0, 0, 897, 109, 1, 0, 0, 0, 898, 899, 7, 14, 0, 0, 899, 111, 1, 0, 0, 0, 900, 901, 7, 15, 0, 0, 901, 113, 1, 0, 0, 0, 902, 905, 5, 194, 0, 0, 903, 905, 3, 112, 56, 0, 904, 902, 1, 0, 0, 0, 904, 903, 1, 0, 0, 0, 905, 115, 1, 0, 0, 0, 906, 910, 5, 194, 0, 0, 907, 910, 3, 108, 54, 0, 908, 910, 3, 110, 55, 0, 909, 906, 1, 0, 0, 0, 909, 907, 1, 0, 0, 0, 909, 908, 1, 0, 0, 0, 910, 117, 1, 0, 0, 0, 911, 912, 5, 199, 0, 0, 912, 913, 5, 212, 0, 0, 913, 914, 3, 104, 52, 0, 914, 119, 1, 0, 0, 0, 115, 122, 132, 140, 143, 147, 150, 154, 157, 160, 163, 166, 170, 174, 177, 180, 183, 187, 190, 199, 205, 226, 243, 260, 266, 272, 283, 285, 296, 299, 305, 313, 319, 321, 325, 330, 333, 336, 340, 344, 347, 349, 352, 356, 360, 363, 365, 367, 372, 383, 389, 396, 401, 405, 409, 414, 421, 429, 432, 435, 454, 468, 484, 496, 508, 516, 520, 527, 533, 542, 546, 577, 594, 606, 616, 619, 623, 626, 638, 655, 659, 665, 672, 684, 688, 691, 694, 705, 732, 741, 743, 745, 753, 758, 766, 776, 779, 789, 802, 808, 811, 818, 828, 834, 838, 844, 851, 860, 866, 876, 878, 881, 889, 894, 904, 909] \ No newline at end of file +[4, 1, 241, 922, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 1, 0, 1, 0, 3, 0, 123, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 131, 8, 1, 10, 1, 12, 1, 134, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 141, 8, 2, 1, 3, 3, 3, 144, 8, 3, 1, 3, 1, 3, 3, 3, 148, 8, 3, 1, 3, 3, 3, 151, 8, 3, 1, 3, 1, 3, 3, 3, 155, 8, 3, 1, 3, 3, 3, 158, 8, 3, 1, 3, 3, 3, 161, 8, 3, 1, 3, 3, 3, 164, 8, 3, 1, 3, 3, 3, 167, 8, 3, 1, 3, 1, 3, 3, 3, 171, 8, 3, 1, 3, 1, 3, 3, 3, 175, 8, 3, 1, 3, 3, 3, 178, 8, 3, 1, 3, 3, 3, 181, 8, 3, 1, 3, 3, 3, 184, 8, 3, 1, 3, 1, 3, 3, 3, 188, 8, 3, 1, 3, 3, 3, 191, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 200, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 3, 7, 206, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 225, 8, 8, 10, 8, 12, 8, 228, 9, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 244, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 261, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 267, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 273, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 284, 8, 15, 3, 15, 286, 8, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 3, 18, 297, 8, 18, 1, 18, 3, 18, 300, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 306, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 314, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 320, 8, 18, 10, 18, 12, 18, 323, 9, 18, 1, 19, 3, 19, 326, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 331, 8, 19, 1, 19, 3, 19, 334, 8, 19, 1, 19, 3, 19, 337, 8, 19, 1, 19, 1, 19, 3, 19, 341, 8, 19, 1, 19, 1, 19, 3, 19, 345, 8, 19, 1, 19, 3, 19, 348, 8, 19, 3, 19, 350, 8, 19, 1, 19, 3, 19, 353, 8, 19, 1, 19, 1, 19, 3, 19, 357, 8, 19, 1, 19, 1, 19, 3, 19, 361, 8, 19, 1, 19, 3, 19, 364, 8, 19, 3, 19, 366, 8, 19, 3, 19, 368, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 373, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 384, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 390, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 395, 8, 23, 10, 23, 12, 23, 398, 9, 23, 1, 24, 1, 24, 3, 24, 402, 8, 24, 1, 24, 1, 24, 3, 24, 406, 8, 24, 1, 24, 1, 24, 3, 24, 410, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 415, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 420, 8, 26, 10, 26, 12, 26, 423, 9, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 430, 8, 28, 1, 28, 3, 28, 433, 8, 28, 1, 28, 3, 28, 436, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 455, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 469, 8, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 483, 8, 35, 10, 35, 12, 35, 486, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 495, 8, 35, 10, 35, 12, 35, 498, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 507, 8, 35, 10, 35, 12, 35, 510, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 517, 8, 35, 1, 35, 1, 35, 3, 35, 521, 8, 35, 1, 36, 1, 36, 1, 36, 5, 36, 526, 8, 36, 10, 36, 12, 36, 529, 9, 36, 1, 37, 1, 37, 1, 37, 3, 37, 534, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 4, 37, 541, 8, 37, 11, 37, 12, 37, 542, 1, 37, 1, 37, 3, 37, 547, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 578, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 595, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 607, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 617, 8, 37, 1, 37, 3, 37, 620, 8, 37, 1, 37, 1, 37, 3, 37, 624, 8, 37, 1, 37, 3, 37, 627, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 639, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 656, 8, 37, 1, 37, 1, 37, 3, 37, 660, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 666, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 673, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 685, 8, 37, 1, 37, 1, 37, 3, 37, 689, 8, 37, 1, 37, 3, 37, 692, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 701, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 712, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 739, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 748, 8, 37, 5, 37, 750, 8, 37, 10, 37, 12, 37, 753, 9, 37, 1, 38, 1, 38, 1, 38, 5, 38, 758, 8, 38, 10, 38, 12, 38, 761, 9, 38, 1, 39, 1, 39, 3, 39, 765, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 771, 8, 40, 10, 40, 12, 40, 774, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 781, 8, 40, 10, 40, 12, 40, 784, 9, 40, 3, 40, 786, 8, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 794, 8, 41, 10, 41, 12, 41, 797, 9, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 809, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 815, 8, 43, 1, 43, 3, 43, 818, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 823, 8, 44, 10, 44, 12, 44, 826, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 835, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 841, 8, 45, 5, 45, 843, 8, 45, 10, 45, 12, 45, 846, 9, 45, 1, 46, 1, 46, 1, 46, 3, 46, 851, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 3, 47, 858, 8, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 5, 48, 865, 8, 48, 10, 48, 12, 48, 868, 9, 48, 1, 49, 1, 49, 1, 49, 3, 49, 873, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 883, 8, 51, 3, 51, 885, 8, 51, 1, 52, 3, 52, 888, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 896, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 901, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 911, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 916, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 0, 3, 36, 74, 90, 60, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 0, 16, 2, 0, 32, 32, 141, 141, 2, 0, 84, 84, 96, 96, 3, 0, 4, 4, 8, 8, 12, 12, 4, 0, 4, 4, 7, 8, 12, 12, 147, 147, 2, 0, 96, 96, 140, 140, 2, 0, 4, 4, 8, 8, 2, 0, 11, 11, 42, 43, 2, 0, 62, 62, 93, 93, 2, 0, 133, 133, 143, 143, 3, 0, 17, 17, 95, 95, 170, 170, 2, 0, 79, 79, 98, 98, 1, 0, 196, 197, 2, 0, 208, 208, 227, 227, 8, 0, 37, 37, 76, 76, 108, 108, 110, 110, 132, 132, 145, 145, 185, 185, 190, 190, 13, 0, 2, 24, 26, 36, 38, 75, 77, 81, 83, 107, 109, 109, 111, 112, 114, 115, 117, 130, 133, 144, 146, 184, 186, 189, 191, 192, 4, 0, 36, 36, 62, 62, 77, 77, 91, 91, 1041, 0, 122, 1, 0, 0, 0, 2, 126, 1, 0, 0, 0, 4, 140, 1, 0, 0, 0, 6, 143, 1, 0, 0, 0, 8, 192, 1, 0, 0, 0, 10, 195, 1, 0, 0, 0, 12, 201, 1, 0, 0, 0, 14, 205, 1, 0, 0, 0, 16, 211, 1, 0, 0, 0, 18, 229, 1, 0, 0, 0, 20, 232, 1, 0, 0, 0, 22, 235, 1, 0, 0, 0, 24, 245, 1, 0, 0, 0, 26, 248, 1, 0, 0, 0, 28, 252, 1, 0, 0, 0, 30, 285, 1, 0, 0, 0, 32, 287, 1, 0, 0, 0, 34, 290, 1, 0, 0, 0, 36, 305, 1, 0, 0, 0, 38, 367, 1, 0, 0, 0, 40, 372, 1, 0, 0, 0, 42, 383, 1, 0, 0, 0, 44, 385, 1, 0, 0, 0, 46, 391, 1, 0, 0, 0, 48, 399, 1, 0, 0, 0, 50, 411, 1, 0, 0, 0, 52, 416, 1, 0, 0, 0, 54, 424, 1, 0, 0, 0, 56, 429, 1, 0, 0, 0, 58, 437, 1, 0, 0, 0, 60, 441, 1, 0, 0, 0, 62, 445, 1, 0, 0, 0, 64, 454, 1, 0, 0, 0, 66, 468, 1, 0, 0, 0, 68, 470, 1, 0, 0, 0, 70, 520, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 659, 1, 0, 0, 0, 76, 754, 1, 0, 0, 0, 78, 764, 1, 0, 0, 0, 80, 785, 1, 0, 0, 0, 82, 790, 1, 0, 0, 0, 84, 808, 1, 0, 0, 0, 86, 817, 1, 0, 0, 0, 88, 819, 1, 0, 0, 0, 90, 834, 1, 0, 0, 0, 92, 847, 1, 0, 0, 0, 94, 857, 1, 0, 0, 0, 96, 861, 1, 0, 0, 0, 98, 872, 1, 0, 0, 0, 100, 874, 1, 0, 0, 0, 102, 884, 1, 0, 0, 0, 104, 887, 1, 0, 0, 0, 106, 900, 1, 0, 0, 0, 108, 902, 1, 0, 0, 0, 110, 904, 1, 0, 0, 0, 112, 906, 1, 0, 0, 0, 114, 910, 1, 0, 0, 0, 116, 915, 1, 0, 0, 0, 118, 917, 1, 0, 0, 0, 120, 123, 3, 2, 1, 0, 121, 123, 3, 6, 3, 0, 122, 120, 1, 0, 0, 0, 122, 121, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 124, 125, 5, 0, 0, 1, 125, 1, 1, 0, 0, 0, 126, 132, 3, 4, 2, 0, 127, 128, 5, 176, 0, 0, 128, 129, 5, 4, 0, 0, 129, 131, 3, 4, 2, 0, 130, 127, 1, 0, 0, 0, 131, 134, 1, 0, 0, 0, 132, 130, 1, 0, 0, 0, 132, 133, 1, 0, 0, 0, 133, 3, 1, 0, 0, 0, 134, 132, 1, 0, 0, 0, 135, 141, 3, 6, 3, 0, 136, 137, 5, 220, 0, 0, 137, 138, 3, 2, 1, 0, 138, 139, 5, 235, 0, 0, 139, 141, 1, 0, 0, 0, 140, 135, 1, 0, 0, 0, 140, 136, 1, 0, 0, 0, 141, 5, 1, 0, 0, 0, 142, 144, 3, 8, 4, 0, 143, 142, 1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 145, 1, 0, 0, 0, 145, 147, 5, 146, 0, 0, 146, 148, 5, 49, 0, 0, 147, 146, 1, 0, 0, 0, 147, 148, 1, 0, 0, 0, 148, 150, 1, 0, 0, 0, 149, 151, 3, 10, 5, 0, 150, 149, 1, 0, 0, 0, 150, 151, 1, 0, 0, 0, 151, 152, 1, 0, 0, 0, 152, 154, 3, 72, 36, 0, 153, 155, 3, 12, 6, 0, 154, 153, 1, 0, 0, 0, 154, 155, 1, 0, 0, 0, 155, 157, 1, 0, 0, 0, 156, 158, 3, 14, 7, 0, 157, 156, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 160, 1, 0, 0, 0, 159, 161, 3, 18, 9, 0, 160, 159, 1, 0, 0, 0, 160, 161, 1, 0, 0, 0, 161, 163, 1, 0, 0, 0, 162, 164, 3, 20, 10, 0, 163, 162, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 166, 1, 0, 0, 0, 165, 167, 3, 22, 11, 0, 166, 165, 1, 0, 0, 0, 166, 167, 1, 0, 0, 0, 167, 170, 1, 0, 0, 0, 168, 169, 5, 189, 0, 0, 169, 171, 7, 0, 0, 0, 170, 168, 1, 0, 0, 0, 170, 171, 1, 0, 0, 0, 171, 174, 1, 0, 0, 0, 172, 173, 5, 189, 0, 0, 173, 175, 5, 169, 0, 0, 174, 172, 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 177, 1, 0, 0, 0, 176, 178, 3, 24, 12, 0, 177, 176, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 180, 1, 0, 0, 0, 179, 181, 3, 16, 8, 0, 180, 179, 1, 0, 0, 0, 180, 181, 1, 0, 0, 0, 181, 183, 1, 0, 0, 0, 182, 184, 3, 26, 13, 0, 183, 182, 1, 0, 0, 0, 183, 184, 1, 0, 0, 0, 184, 187, 1, 0, 0, 0, 185, 188, 3, 30, 15, 0, 186, 188, 3, 32, 16, 0, 187, 185, 1, 0, 0, 0, 187, 186, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 190, 1, 0, 0, 0, 189, 191, 3, 34, 17, 0, 190, 189, 1, 0, 0, 0, 190, 191, 1, 0, 0, 0, 191, 7, 1, 0, 0, 0, 192, 193, 5, 189, 0, 0, 193, 194, 3, 82, 41, 0, 194, 9, 1, 0, 0, 0, 195, 196, 5, 168, 0, 0, 196, 199, 5, 197, 0, 0, 197, 198, 5, 189, 0, 0, 198, 200, 5, 164, 0, 0, 199, 197, 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 11, 1, 0, 0, 0, 201, 202, 5, 68, 0, 0, 202, 203, 3, 36, 18, 0, 203, 13, 1, 0, 0, 0, 204, 206, 7, 1, 0, 0, 205, 204, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 208, 5, 9, 0, 0, 208, 209, 5, 90, 0, 0, 209, 210, 3, 72, 36, 0, 210, 15, 1, 0, 0, 0, 211, 212, 5, 188, 0, 0, 212, 213, 3, 116, 58, 0, 213, 214, 5, 10, 0, 0, 214, 215, 5, 220, 0, 0, 215, 216, 3, 56, 28, 0, 216, 226, 5, 235, 0, 0, 217, 218, 5, 206, 0, 0, 218, 219, 3, 116, 58, 0, 219, 220, 5, 10, 0, 0, 220, 221, 5, 220, 0, 0, 221, 222, 3, 56, 28, 0, 222, 223, 5, 235, 0, 0, 223, 225, 1, 0, 0, 0, 224, 217, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 17, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 5, 129, 0, 0, 230, 231, 3, 74, 37, 0, 231, 19, 1, 0, 0, 0, 232, 233, 5, 187, 0, 0, 233, 234, 3, 74, 37, 0, 234, 21, 1, 0, 0, 0, 235, 236, 5, 73, 0, 0, 236, 243, 5, 18, 0, 0, 237, 238, 7, 0, 0, 0, 238, 239, 5, 220, 0, 0, 239, 240, 3, 72, 36, 0, 240, 241, 5, 235, 0, 0, 241, 244, 1, 0, 0, 0, 242, 244, 3, 72, 36, 0, 243, 237, 1, 0, 0, 0, 243, 242, 1, 0, 0, 0, 244, 23, 1, 0, 0, 0, 245, 246, 5, 74, 0, 0, 246, 247, 3, 74, 37, 0, 247, 25, 1, 0, 0, 0, 248, 249, 5, 122, 0, 0, 249, 250, 5, 18, 0, 0, 250, 251, 3, 46, 23, 0, 251, 27, 1, 0, 0, 0, 252, 253, 5, 122, 0, 0, 253, 254, 5, 18, 0, 0, 254, 255, 3, 72, 36, 0, 255, 29, 1, 0, 0, 0, 256, 257, 5, 99, 0, 0, 257, 260, 3, 74, 37, 0, 258, 259, 5, 206, 0, 0, 259, 261, 3, 74, 37, 0, 260, 258, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 266, 1, 0, 0, 0, 262, 263, 5, 189, 0, 0, 263, 267, 5, 164, 0, 0, 264, 265, 5, 18, 0, 0, 265, 267, 3, 72, 36, 0, 266, 262, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 286, 1, 0, 0, 0, 268, 269, 5, 99, 0, 0, 269, 272, 3, 74, 37, 0, 270, 271, 5, 189, 0, 0, 271, 273, 5, 164, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 5, 118, 0, 0, 275, 276, 3, 74, 37, 0, 276, 286, 1, 0, 0, 0, 277, 278, 5, 99, 0, 0, 278, 279, 3, 74, 37, 0, 279, 280, 5, 118, 0, 0, 280, 283, 3, 74, 37, 0, 281, 282, 5, 18, 0, 0, 282, 284, 3, 72, 36, 0, 283, 281, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 286, 1, 0, 0, 0, 285, 256, 1, 0, 0, 0, 285, 268, 1, 0, 0, 0, 285, 277, 1, 0, 0, 0, 286, 31, 1, 0, 0, 0, 287, 288, 5, 118, 0, 0, 288, 289, 3, 74, 37, 0, 289, 33, 1, 0, 0, 0, 290, 291, 5, 150, 0, 0, 291, 292, 3, 52, 26, 0, 292, 35, 1, 0, 0, 0, 293, 294, 6, 18, -1, 0, 294, 296, 3, 90, 45, 0, 295, 297, 5, 61, 0, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 44, 22, 0, 299, 298, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 306, 1, 0, 0, 0, 301, 302, 5, 220, 0, 0, 302, 303, 3, 36, 18, 0, 303, 304, 5, 235, 0, 0, 304, 306, 1, 0, 0, 0, 305, 293, 1, 0, 0, 0, 305, 301, 1, 0, 0, 0, 306, 321, 1, 0, 0, 0, 307, 308, 10, 3, 0, 0, 308, 309, 3, 40, 20, 0, 309, 310, 3, 36, 18, 4, 310, 320, 1, 0, 0, 0, 311, 313, 10, 4, 0, 0, 312, 314, 3, 38, 19, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 5, 90, 0, 0, 316, 317, 3, 36, 18, 0, 317, 318, 3, 42, 21, 0, 318, 320, 1, 0, 0, 0, 319, 307, 1, 0, 0, 0, 319, 311, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 37, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 326, 7, 2, 0, 0, 325, 324, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 334, 5, 84, 0, 0, 328, 330, 5, 84, 0, 0, 329, 331, 7, 2, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 334, 7, 2, 0, 0, 333, 325, 1, 0, 0, 0, 333, 328, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 368, 1, 0, 0, 0, 335, 337, 7, 3, 0, 0, 336, 335, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 7, 4, 0, 0, 339, 341, 5, 123, 0, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 350, 1, 0, 0, 0, 342, 344, 7, 4, 0, 0, 343, 345, 5, 123, 0, 0, 344, 343, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 347, 1, 0, 0, 0, 346, 348, 7, 3, 0, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 350, 1, 0, 0, 0, 349, 336, 1, 0, 0, 0, 349, 342, 1, 0, 0, 0, 350, 368, 1, 0, 0, 0, 351, 353, 7, 5, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 356, 5, 69, 0, 0, 355, 357, 5, 123, 0, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 366, 1, 0, 0, 0, 358, 360, 5, 69, 0, 0, 359, 361, 5, 123, 0, 0, 360, 359, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 1, 0, 0, 0, 362, 364, 7, 5, 0, 0, 363, 362, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 352, 1, 0, 0, 0, 365, 358, 1, 0, 0, 0, 366, 368, 1, 0, 0, 0, 367, 333, 1, 0, 0, 0, 367, 349, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 39, 1, 0, 0, 0, 369, 370, 5, 31, 0, 0, 370, 373, 5, 90, 0, 0, 371, 373, 5, 206, 0, 0, 372, 369, 1, 0, 0, 0, 372, 371, 1, 0, 0, 0, 373, 41, 1, 0, 0, 0, 374, 375, 5, 119, 0, 0, 375, 384, 3, 72, 36, 0, 376, 377, 5, 179, 0, 0, 377, 378, 5, 220, 0, 0, 378, 379, 3, 72, 36, 0, 379, 380, 5, 235, 0, 0, 380, 384, 1, 0, 0, 0, 381, 382, 5, 179, 0, 0, 382, 384, 3, 72, 36, 0, 383, 374, 1, 0, 0, 0, 383, 376, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 43, 1, 0, 0, 0, 385, 386, 5, 144, 0, 0, 386, 389, 3, 50, 25, 0, 387, 388, 5, 118, 0, 0, 388, 390, 3, 50, 25, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 45, 1, 0, 0, 0, 391, 396, 3, 48, 24, 0, 392, 393, 5, 206, 0, 0, 393, 395, 3, 48, 24, 0, 394, 392, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 47, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 401, 3, 74, 37, 0, 400, 402, 7, 6, 0, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 404, 5, 117, 0, 0, 404, 406, 7, 7, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 408, 5, 26, 0, 0, 408, 410, 5, 199, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 49, 1, 0, 0, 0, 411, 414, 3, 104, 52, 0, 412, 413, 5, 237, 0, 0, 413, 415, 3, 104, 52, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 51, 1, 0, 0, 0, 416, 421, 3, 54, 27, 0, 417, 418, 5, 206, 0, 0, 418, 420, 3, 54, 27, 0, 419, 417, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 53, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 425, 3, 116, 58, 0, 425, 426, 5, 212, 0, 0, 426, 427, 3, 106, 53, 0, 427, 55, 1, 0, 0, 0, 428, 430, 3, 58, 29, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 432, 1, 0, 0, 0, 431, 433, 3, 60, 30, 0, 432, 431, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 435, 1, 0, 0, 0, 434, 436, 3, 62, 31, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 57, 1, 0, 0, 0, 437, 438, 5, 126, 0, 0, 438, 439, 5, 18, 0, 0, 439, 440, 3, 72, 36, 0, 440, 59, 1, 0, 0, 0, 441, 442, 5, 122, 0, 0, 442, 443, 5, 18, 0, 0, 443, 444, 3, 46, 23, 0, 444, 61, 1, 0, 0, 0, 445, 446, 7, 8, 0, 0, 446, 447, 3, 64, 32, 0, 447, 63, 1, 0, 0, 0, 448, 455, 3, 66, 33, 0, 449, 450, 5, 16, 0, 0, 450, 451, 3, 66, 33, 0, 451, 452, 5, 6, 0, 0, 452, 453, 3, 66, 33, 0, 453, 455, 1, 0, 0, 0, 454, 448, 1, 0, 0, 0, 454, 449, 1, 0, 0, 0, 455, 65, 1, 0, 0, 0, 456, 457, 5, 33, 0, 0, 457, 469, 5, 142, 0, 0, 458, 459, 5, 175, 0, 0, 459, 469, 5, 128, 0, 0, 460, 461, 5, 175, 0, 0, 461, 469, 5, 64, 0, 0, 462, 463, 3, 104, 52, 0, 463, 464, 5, 128, 0, 0, 464, 469, 1, 0, 0, 0, 465, 466, 3, 104, 52, 0, 466, 467, 5, 64, 0, 0, 467, 469, 1, 0, 0, 0, 468, 456, 1, 0, 0, 0, 468, 458, 1, 0, 0, 0, 468, 460, 1, 0, 0, 0, 468, 462, 1, 0, 0, 0, 468, 465, 1, 0, 0, 0, 469, 67, 1, 0, 0, 0, 470, 471, 3, 74, 37, 0, 471, 472, 5, 0, 0, 1, 472, 69, 1, 0, 0, 0, 473, 521, 3, 116, 58, 0, 474, 475, 3, 116, 58, 0, 475, 476, 5, 220, 0, 0, 476, 477, 3, 116, 58, 0, 477, 484, 3, 70, 35, 0, 478, 479, 5, 206, 0, 0, 479, 480, 3, 116, 58, 0, 480, 481, 3, 70, 35, 0, 481, 483, 1, 0, 0, 0, 482, 478, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 487, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 488, 5, 235, 0, 0, 488, 521, 1, 0, 0, 0, 489, 490, 3, 116, 58, 0, 490, 491, 5, 220, 0, 0, 491, 496, 3, 118, 59, 0, 492, 493, 5, 206, 0, 0, 493, 495, 3, 118, 59, 0, 494, 492, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 499, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 5, 235, 0, 0, 500, 521, 1, 0, 0, 0, 501, 502, 3, 116, 58, 0, 502, 503, 5, 220, 0, 0, 503, 508, 3, 70, 35, 0, 504, 505, 5, 206, 0, 0, 505, 507, 3, 70, 35, 0, 506, 504, 1, 0, 0, 0, 507, 510, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 511, 512, 5, 235, 0, 0, 512, 521, 1, 0, 0, 0, 513, 514, 3, 116, 58, 0, 514, 516, 5, 220, 0, 0, 515, 517, 3, 72, 36, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 5, 235, 0, 0, 519, 521, 1, 0, 0, 0, 520, 473, 1, 0, 0, 0, 520, 474, 1, 0, 0, 0, 520, 489, 1, 0, 0, 0, 520, 501, 1, 0, 0, 0, 520, 513, 1, 0, 0, 0, 521, 71, 1, 0, 0, 0, 522, 527, 3, 74, 37, 0, 523, 524, 5, 206, 0, 0, 524, 526, 3, 74, 37, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 73, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 531, 6, 37, -1, 0, 531, 533, 5, 19, 0, 0, 532, 534, 3, 74, 37, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 540, 1, 0, 0, 0, 535, 536, 5, 186, 0, 0, 536, 537, 3, 74, 37, 0, 537, 538, 5, 163, 0, 0, 538, 539, 3, 74, 37, 0, 539, 541, 1, 0, 0, 0, 540, 535, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 545, 5, 52, 0, 0, 545, 547, 3, 74, 37, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 53, 0, 0, 549, 660, 1, 0, 0, 0, 550, 551, 5, 20, 0, 0, 551, 552, 5, 220, 0, 0, 552, 553, 3, 74, 37, 0, 553, 554, 5, 10, 0, 0, 554, 555, 3, 70, 35, 0, 555, 556, 5, 235, 0, 0, 556, 660, 1, 0, 0, 0, 557, 558, 5, 36, 0, 0, 558, 660, 5, 199, 0, 0, 559, 560, 5, 59, 0, 0, 560, 561, 5, 220, 0, 0, 561, 562, 3, 108, 54, 0, 562, 563, 5, 68, 0, 0, 563, 564, 3, 74, 37, 0, 564, 565, 5, 235, 0, 0, 565, 660, 1, 0, 0, 0, 566, 567, 5, 86, 0, 0, 567, 568, 3, 74, 37, 0, 568, 569, 3, 108, 54, 0, 569, 660, 1, 0, 0, 0, 570, 571, 5, 155, 0, 0, 571, 572, 5, 220, 0, 0, 572, 573, 3, 74, 37, 0, 573, 574, 5, 68, 0, 0, 574, 577, 3, 74, 37, 0, 575, 576, 5, 65, 0, 0, 576, 578, 3, 74, 37, 0, 577, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 5, 235, 0, 0, 580, 660, 1, 0, 0, 0, 581, 582, 5, 166, 0, 0, 582, 660, 5, 199, 0, 0, 583, 584, 5, 171, 0, 0, 584, 585, 5, 220, 0, 0, 585, 586, 7, 9, 0, 0, 586, 587, 5, 199, 0, 0, 587, 588, 5, 68, 0, 0, 588, 589, 3, 74, 37, 0, 589, 590, 5, 235, 0, 0, 590, 660, 1, 0, 0, 0, 591, 592, 3, 116, 58, 0, 592, 594, 5, 220, 0, 0, 593, 595, 3, 72, 36, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 235, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 125, 0, 0, 599, 600, 5, 220, 0, 0, 600, 601, 3, 56, 28, 0, 601, 602, 5, 235, 0, 0, 602, 660, 1, 0, 0, 0, 603, 604, 3, 116, 58, 0, 604, 606, 5, 220, 0, 0, 605, 607, 3, 72, 36, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 5, 235, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 125, 0, 0, 611, 612, 3, 116, 58, 0, 612, 660, 1, 0, 0, 0, 613, 619, 3, 116, 58, 0, 614, 616, 5, 220, 0, 0, 615, 617, 3, 72, 36, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 5, 235, 0, 0, 619, 614, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 5, 220, 0, 0, 622, 624, 5, 49, 0, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 627, 3, 76, 38, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 235, 0, 0, 629, 660, 1, 0, 0, 0, 630, 660, 3, 106, 53, 0, 631, 632, 5, 208, 0, 0, 632, 660, 3, 74, 37, 17, 633, 634, 5, 115, 0, 0, 634, 660, 3, 74, 37, 12, 635, 636, 3, 94, 47, 0, 636, 637, 5, 210, 0, 0, 637, 639, 1, 0, 0, 0, 638, 635, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 660, 5, 202, 0, 0, 641, 642, 5, 220, 0, 0, 642, 643, 3, 2, 1, 0, 643, 644, 5, 235, 0, 0, 644, 660, 1, 0, 0, 0, 645, 646, 5, 220, 0, 0, 646, 647, 3, 74, 37, 0, 647, 648, 5, 235, 0, 0, 648, 660, 1, 0, 0, 0, 649, 650, 5, 220, 0, 0, 650, 651, 3, 72, 36, 0, 651, 652, 5, 235, 0, 0, 652, 660, 1, 0, 0, 0, 653, 655, 5, 219, 0, 0, 654, 656, 3, 72, 36, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 5, 234, 0, 0, 658, 660, 3, 86, 43, 0, 659, 530, 1, 0, 0, 0, 659, 550, 1, 0, 0, 0, 659, 557, 1, 0, 0, 0, 659, 559, 1, 0, 0, 0, 659, 566, 1, 0, 0, 0, 659, 570, 1, 0, 0, 0, 659, 581, 1, 0, 0, 0, 659, 583, 1, 0, 0, 0, 659, 591, 1, 0, 0, 0, 659, 603, 1, 0, 0, 0, 659, 613, 1, 0, 0, 0, 659, 630, 1, 0, 0, 0, 659, 631, 1, 0, 0, 0, 659, 633, 1, 0, 0, 0, 659, 638, 1, 0, 0, 0, 659, 641, 1, 0, 0, 0, 659, 645, 1, 0, 0, 0, 659, 649, 1, 0, 0, 0, 659, 653, 1, 0, 0, 0, 659, 658, 1, 0, 0, 0, 660, 751, 1, 0, 0, 0, 661, 665, 10, 16, 0, 0, 662, 666, 5, 202, 0, 0, 663, 666, 5, 237, 0, 0, 664, 666, 5, 226, 0, 0, 665, 662, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 750, 3, 74, 37, 17, 668, 672, 10, 15, 0, 0, 669, 673, 5, 227, 0, 0, 670, 673, 5, 208, 0, 0, 671, 673, 5, 207, 0, 0, 672, 669, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 750, 3, 74, 37, 16, 675, 700, 10, 14, 0, 0, 676, 701, 5, 211, 0, 0, 677, 701, 5, 212, 0, 0, 678, 701, 5, 223, 0, 0, 679, 701, 5, 221, 0, 0, 680, 701, 5, 222, 0, 0, 681, 701, 5, 213, 0, 0, 682, 701, 5, 214, 0, 0, 683, 685, 5, 115, 0, 0, 684, 683, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 5, 80, 0, 0, 687, 689, 5, 25, 0, 0, 688, 687, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 701, 1, 0, 0, 0, 690, 692, 5, 115, 0, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 701, 7, 10, 0, 0, 694, 701, 5, 231, 0, 0, 695, 701, 5, 232, 0, 0, 696, 701, 5, 225, 0, 0, 697, 701, 5, 216, 0, 0, 698, 701, 5, 217, 0, 0, 699, 701, 5, 224, 0, 0, 700, 676, 1, 0, 0, 0, 700, 677, 1, 0, 0, 0, 700, 678, 1, 0, 0, 0, 700, 679, 1, 0, 0, 0, 700, 680, 1, 0, 0, 0, 700, 681, 1, 0, 0, 0, 700, 682, 1, 0, 0, 0, 700, 684, 1, 0, 0, 0, 700, 691, 1, 0, 0, 0, 700, 694, 1, 0, 0, 0, 700, 695, 1, 0, 0, 0, 700, 696, 1, 0, 0, 0, 700, 697, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 700, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 750, 3, 74, 37, 15, 703, 704, 10, 11, 0, 0, 704, 705, 5, 6, 0, 0, 705, 750, 3, 74, 37, 12, 706, 707, 10, 10, 0, 0, 707, 708, 5, 121, 0, 0, 708, 750, 3, 74, 37, 11, 709, 711, 10, 9, 0, 0, 710, 712, 5, 115, 0, 0, 711, 710, 1, 0, 0, 0, 711, 712, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 5, 16, 0, 0, 714, 715, 3, 74, 37, 0, 715, 716, 5, 6, 0, 0, 716, 717, 3, 74, 37, 10, 717, 750, 1, 0, 0, 0, 718, 719, 10, 8, 0, 0, 719, 720, 5, 228, 0, 0, 720, 721, 3, 74, 37, 0, 721, 722, 5, 205, 0, 0, 722, 723, 3, 74, 37, 8, 723, 750, 1, 0, 0, 0, 724, 725, 10, 20, 0, 0, 725, 726, 5, 219, 0, 0, 726, 727, 3, 74, 37, 0, 727, 728, 5, 234, 0, 0, 728, 750, 1, 0, 0, 0, 729, 730, 10, 19, 0, 0, 730, 731, 5, 210, 0, 0, 731, 750, 5, 197, 0, 0, 732, 733, 10, 18, 0, 0, 733, 734, 5, 210, 0, 0, 734, 750, 3, 116, 58, 0, 735, 736, 10, 13, 0, 0, 736, 738, 5, 88, 0, 0, 737, 739, 5, 115, 0, 0, 738, 737, 1, 0, 0, 0, 738, 739, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 750, 5, 116, 0, 0, 741, 747, 10, 7, 0, 0, 742, 748, 3, 114, 57, 0, 743, 744, 5, 10, 0, 0, 744, 748, 3, 116, 58, 0, 745, 746, 5, 10, 0, 0, 746, 748, 5, 199, 0, 0, 747, 742, 1, 0, 0, 0, 747, 743, 1, 0, 0, 0, 747, 745, 1, 0, 0, 0, 748, 750, 1, 0, 0, 0, 749, 661, 1, 0, 0, 0, 749, 668, 1, 0, 0, 0, 749, 675, 1, 0, 0, 0, 749, 703, 1, 0, 0, 0, 749, 706, 1, 0, 0, 0, 749, 709, 1, 0, 0, 0, 749, 718, 1, 0, 0, 0, 749, 724, 1, 0, 0, 0, 749, 729, 1, 0, 0, 0, 749, 732, 1, 0, 0, 0, 749, 735, 1, 0, 0, 0, 749, 741, 1, 0, 0, 0, 750, 753, 1, 0, 0, 0, 751, 749, 1, 0, 0, 0, 751, 752, 1, 0, 0, 0, 752, 75, 1, 0, 0, 0, 753, 751, 1, 0, 0, 0, 754, 759, 3, 78, 39, 0, 755, 756, 5, 206, 0, 0, 756, 758, 3, 78, 39, 0, 757, 755, 1, 0, 0, 0, 758, 761, 1, 0, 0, 0, 759, 757, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 77, 1, 0, 0, 0, 761, 759, 1, 0, 0, 0, 762, 765, 3, 80, 40, 0, 763, 765, 3, 74, 37, 0, 764, 762, 1, 0, 0, 0, 764, 763, 1, 0, 0, 0, 765, 79, 1, 0, 0, 0, 766, 767, 5, 220, 0, 0, 767, 772, 3, 116, 58, 0, 768, 769, 5, 206, 0, 0, 769, 771, 3, 116, 58, 0, 770, 768, 1, 0, 0, 0, 771, 774, 1, 0, 0, 0, 772, 770, 1, 0, 0, 0, 772, 773, 1, 0, 0, 0, 773, 775, 1, 0, 0, 0, 774, 772, 1, 0, 0, 0, 775, 776, 5, 235, 0, 0, 776, 786, 1, 0, 0, 0, 777, 782, 3, 116, 58, 0, 778, 779, 5, 206, 0, 0, 779, 781, 3, 116, 58, 0, 780, 778, 1, 0, 0, 0, 781, 784, 1, 0, 0, 0, 782, 780, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 786, 1, 0, 0, 0, 784, 782, 1, 0, 0, 0, 785, 766, 1, 0, 0, 0, 785, 777, 1, 0, 0, 0, 786, 787, 1, 0, 0, 0, 787, 788, 5, 201, 0, 0, 788, 789, 3, 74, 37, 0, 789, 81, 1, 0, 0, 0, 790, 795, 3, 84, 42, 0, 791, 792, 5, 206, 0, 0, 792, 794, 3, 84, 42, 0, 793, 791, 1, 0, 0, 0, 794, 797, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 795, 796, 1, 0, 0, 0, 796, 83, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 798, 799, 3, 116, 58, 0, 799, 800, 5, 10, 0, 0, 800, 801, 5, 220, 0, 0, 801, 802, 3, 2, 1, 0, 802, 803, 5, 235, 0, 0, 803, 809, 1, 0, 0, 0, 804, 805, 3, 74, 37, 0, 805, 806, 5, 10, 0, 0, 806, 807, 3, 116, 58, 0, 807, 809, 1, 0, 0, 0, 808, 798, 1, 0, 0, 0, 808, 804, 1, 0, 0, 0, 809, 85, 1, 0, 0, 0, 810, 818, 5, 200, 0, 0, 811, 812, 3, 94, 47, 0, 812, 813, 5, 210, 0, 0, 813, 815, 1, 0, 0, 0, 814, 811, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 818, 3, 88, 44, 0, 817, 810, 1, 0, 0, 0, 817, 814, 1, 0, 0, 0, 818, 87, 1, 0, 0, 0, 819, 824, 3, 116, 58, 0, 820, 821, 5, 210, 0, 0, 821, 823, 3, 116, 58, 0, 822, 820, 1, 0, 0, 0, 823, 826, 1, 0, 0, 0, 824, 822, 1, 0, 0, 0, 824, 825, 1, 0, 0, 0, 825, 89, 1, 0, 0, 0, 826, 824, 1, 0, 0, 0, 827, 828, 6, 45, -1, 0, 828, 835, 3, 94, 47, 0, 829, 835, 3, 92, 46, 0, 830, 831, 5, 220, 0, 0, 831, 832, 3, 2, 1, 0, 832, 833, 5, 235, 0, 0, 833, 835, 1, 0, 0, 0, 834, 827, 1, 0, 0, 0, 834, 829, 1, 0, 0, 0, 834, 830, 1, 0, 0, 0, 835, 844, 1, 0, 0, 0, 836, 840, 10, 1, 0, 0, 837, 841, 3, 114, 57, 0, 838, 839, 5, 10, 0, 0, 839, 841, 3, 116, 58, 0, 840, 837, 1, 0, 0, 0, 840, 838, 1, 0, 0, 0, 841, 843, 1, 0, 0, 0, 842, 836, 1, 0, 0, 0, 843, 846, 1, 0, 0, 0, 844, 842, 1, 0, 0, 0, 844, 845, 1, 0, 0, 0, 845, 91, 1, 0, 0, 0, 846, 844, 1, 0, 0, 0, 847, 848, 3, 116, 58, 0, 848, 850, 5, 220, 0, 0, 849, 851, 3, 96, 48, 0, 850, 849, 1, 0, 0, 0, 850, 851, 1, 0, 0, 0, 851, 852, 1, 0, 0, 0, 852, 853, 5, 235, 0, 0, 853, 93, 1, 0, 0, 0, 854, 855, 3, 100, 50, 0, 855, 856, 5, 210, 0, 0, 856, 858, 1, 0, 0, 0, 857, 854, 1, 0, 0, 0, 857, 858, 1, 0, 0, 0, 858, 859, 1, 0, 0, 0, 859, 860, 3, 116, 58, 0, 860, 95, 1, 0, 0, 0, 861, 866, 3, 98, 49, 0, 862, 863, 5, 206, 0, 0, 863, 865, 3, 98, 49, 0, 864, 862, 1, 0, 0, 0, 865, 868, 1, 0, 0, 0, 866, 864, 1, 0, 0, 0, 866, 867, 1, 0, 0, 0, 867, 97, 1, 0, 0, 0, 868, 866, 1, 0, 0, 0, 869, 873, 3, 88, 44, 0, 870, 873, 3, 92, 46, 0, 871, 873, 3, 106, 53, 0, 872, 869, 1, 0, 0, 0, 872, 870, 1, 0, 0, 0, 872, 871, 1, 0, 0, 0, 873, 99, 1, 0, 0, 0, 874, 875, 3, 116, 58, 0, 875, 101, 1, 0, 0, 0, 876, 885, 5, 195, 0, 0, 877, 878, 5, 210, 0, 0, 878, 885, 7, 11, 0, 0, 879, 880, 5, 197, 0, 0, 880, 882, 5, 210, 0, 0, 881, 883, 7, 11, 0, 0, 882, 881, 1, 0, 0, 0, 882, 883, 1, 0, 0, 0, 883, 885, 1, 0, 0, 0, 884, 876, 1, 0, 0, 0, 884, 877, 1, 0, 0, 0, 884, 879, 1, 0, 0, 0, 885, 103, 1, 0, 0, 0, 886, 888, 7, 12, 0, 0, 887, 886, 1, 0, 0, 0, 887, 888, 1, 0, 0, 0, 888, 895, 1, 0, 0, 0, 889, 896, 3, 102, 51, 0, 890, 896, 5, 196, 0, 0, 891, 896, 5, 197, 0, 0, 892, 896, 5, 198, 0, 0, 893, 896, 5, 82, 0, 0, 894, 896, 5, 113, 0, 0, 895, 889, 1, 0, 0, 0, 895, 890, 1, 0, 0, 0, 895, 891, 1, 0, 0, 0, 895, 892, 1, 0, 0, 0, 895, 893, 1, 0, 0, 0, 895, 894, 1, 0, 0, 0, 896, 105, 1, 0, 0, 0, 897, 901, 3, 104, 52, 0, 898, 901, 5, 199, 0, 0, 899, 901, 5, 116, 0, 0, 900, 897, 1, 0, 0, 0, 900, 898, 1, 0, 0, 0, 900, 899, 1, 0, 0, 0, 901, 107, 1, 0, 0, 0, 902, 903, 7, 13, 0, 0, 903, 109, 1, 0, 0, 0, 904, 905, 7, 14, 0, 0, 905, 111, 1, 0, 0, 0, 906, 907, 7, 15, 0, 0, 907, 113, 1, 0, 0, 0, 908, 911, 5, 194, 0, 0, 909, 911, 3, 112, 56, 0, 910, 908, 1, 0, 0, 0, 910, 909, 1, 0, 0, 0, 911, 115, 1, 0, 0, 0, 912, 916, 5, 194, 0, 0, 913, 916, 3, 108, 54, 0, 914, 916, 3, 110, 55, 0, 915, 912, 1, 0, 0, 0, 915, 913, 1, 0, 0, 0, 915, 914, 1, 0, 0, 0, 916, 117, 1, 0, 0, 0, 917, 918, 5, 199, 0, 0, 918, 919, 5, 212, 0, 0, 919, 920, 3, 104, 52, 0, 920, 119, 1, 0, 0, 0, 115, 122, 132, 140, 143, 147, 150, 154, 157, 160, 163, 166, 170, 174, 177, 180, 183, 187, 190, 199, 205, 226, 243, 260, 266, 272, 283, 285, 296, 299, 305, 313, 319, 321, 325, 330, 333, 336, 340, 344, 347, 349, 352, 356, 360, 363, 365, 367, 372, 383, 389, 396, 401, 405, 409, 414, 421, 429, 432, 435, 454, 468, 484, 496, 508, 516, 520, 527, 533, 542, 546, 577, 594, 606, 616, 619, 623, 626, 638, 655, 659, 665, 672, 684, 688, 691, 700, 711, 738, 747, 749, 751, 759, 764, 772, 782, 785, 795, 808, 814, 817, 824, 834, 840, 844, 850, 857, 866, 872, 882, 884, 887, 895, 900, 910, 915] \ No newline at end of file diff --git a/posthog/hogql/grammar/HogQLParser.py b/posthog/hogql/grammar/HogQLParser.py index 8234400a5d326..1e15e11f2bd14 100644 --- a/posthog/hogql/grammar/HogQLParser.py +++ b/posthog/hogql/grammar/HogQLParser.py @@ -10,7 +10,7 @@ def serializedATN(): return [ - 4,1,235,916,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,241,922,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -68,308 +68,311 @@ def serializedATN(): 37,660,8,37,1,37,1,37,1,37,1,37,3,37,666,8,37,1,37,1,37,1,37,1,37, 1,37,3,37,673,8,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, 1,37,3,37,685,8,37,1,37,1,37,3,37,689,8,37,1,37,3,37,692,8,37,1, - 37,3,37,695,8,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3, - 37,706,8,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1, + 37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,701,8,37,1,37,1,37,1,37,1, + 37,1,37,1,37,1,37,1,37,1,37,3,37,712,8,37,1,37,1,37,1,37,1,37,1, 37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1, - 37,1,37,3,37,733,8,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,742, - 8,37,5,37,744,8,37,10,37,12,37,747,9,37,1,38,1,38,1,38,5,38,752, - 8,38,10,38,12,38,755,9,38,1,39,1,39,3,39,759,8,39,1,40,1,40,1,40, - 1,40,5,40,765,8,40,10,40,12,40,768,9,40,1,40,1,40,1,40,1,40,1,40, - 5,40,775,8,40,10,40,12,40,778,9,40,3,40,780,8,40,1,40,1,40,1,40, - 1,41,1,41,1,41,5,41,788,8,41,10,41,12,41,791,9,41,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,803,8,42,1,43,1,43,1,43, - 1,43,3,43,809,8,43,1,43,3,43,812,8,43,1,44,1,44,1,44,5,44,817,8, - 44,10,44,12,44,820,9,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,3,45, - 829,8,45,1,45,1,45,1,45,1,45,3,45,835,8,45,5,45,837,8,45,10,45,12, - 45,840,9,45,1,46,1,46,1,46,3,46,845,8,46,1,46,1,46,1,47,1,47,1,47, - 3,47,852,8,47,1,47,1,47,1,48,1,48,1,48,5,48,859,8,48,10,48,12,48, - 862,9,48,1,49,1,49,1,49,3,49,867,8,49,1,50,1,50,1,51,1,51,1,51,1, - 51,1,51,1,51,3,51,877,8,51,3,51,879,8,51,1,52,3,52,882,8,52,1,52, - 1,52,1,52,1,52,1,52,1,52,3,52,890,8,52,1,53,1,53,1,53,3,53,895,8, - 53,1,54,1,54,1,55,1,55,1,56,1,56,1,57,1,57,3,57,905,8,57,1,58,1, - 58,1,58,3,58,910,8,58,1,59,1,59,1,59,1,59,1,59,0,3,36,74,90,60,0, - 2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46, - 48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86,88,90, - 92,94,96,98,100,102,104,106,108,110,112,114,116,118,0,16,2,0,32, - 32,141,141,2,0,84,84,96,96,3,0,4,4,8,8,12,12,4,0,4,4,7,8,12,12,147, - 147,2,0,96,96,140,140,2,0,4,4,8,8,2,0,11,11,42,43,2,0,62,62,93,93, - 2,0,133,133,143,143,3,0,17,17,95,95,170,170,2,0,79,79,98,98,1,0, - 196,197,2,0,208,208,223,223,8,0,37,37,76,76,108,108,110,110,132, - 132,145,145,185,185,190,190,13,0,2,24,26,36,38,75,77,81,83,107,109, - 109,111,112,114,115,117,130,133,144,146,184,186,189,191,192,4,0, - 36,36,62,62,77,77,91,91,1029,0,122,1,0,0,0,2,126,1,0,0,0,4,140,1, - 0,0,0,6,143,1,0,0,0,8,192,1,0,0,0,10,195,1,0,0,0,12,201,1,0,0,0, - 14,205,1,0,0,0,16,211,1,0,0,0,18,229,1,0,0,0,20,232,1,0,0,0,22,235, - 1,0,0,0,24,245,1,0,0,0,26,248,1,0,0,0,28,252,1,0,0,0,30,285,1,0, - 0,0,32,287,1,0,0,0,34,290,1,0,0,0,36,305,1,0,0,0,38,367,1,0,0,0, - 40,372,1,0,0,0,42,383,1,0,0,0,44,385,1,0,0,0,46,391,1,0,0,0,48,399, - 1,0,0,0,50,411,1,0,0,0,52,416,1,0,0,0,54,424,1,0,0,0,56,429,1,0, - 0,0,58,437,1,0,0,0,60,441,1,0,0,0,62,445,1,0,0,0,64,454,1,0,0,0, - 66,468,1,0,0,0,68,470,1,0,0,0,70,520,1,0,0,0,72,522,1,0,0,0,74,659, - 1,0,0,0,76,748,1,0,0,0,78,758,1,0,0,0,80,779,1,0,0,0,82,784,1,0, - 0,0,84,802,1,0,0,0,86,811,1,0,0,0,88,813,1,0,0,0,90,828,1,0,0,0, - 92,841,1,0,0,0,94,851,1,0,0,0,96,855,1,0,0,0,98,866,1,0,0,0,100, - 868,1,0,0,0,102,878,1,0,0,0,104,881,1,0,0,0,106,894,1,0,0,0,108, - 896,1,0,0,0,110,898,1,0,0,0,112,900,1,0,0,0,114,904,1,0,0,0,116, - 909,1,0,0,0,118,911,1,0,0,0,120,123,3,2,1,0,121,123,3,6,3,0,122, - 120,1,0,0,0,122,121,1,0,0,0,123,124,1,0,0,0,124,125,5,0,0,1,125, - 1,1,0,0,0,126,132,3,4,2,0,127,128,5,176,0,0,128,129,5,4,0,0,129, - 131,3,4,2,0,130,127,1,0,0,0,131,134,1,0,0,0,132,130,1,0,0,0,132, - 133,1,0,0,0,133,3,1,0,0,0,134,132,1,0,0,0,135,141,3,6,3,0,136,137, - 5,218,0,0,137,138,3,2,1,0,138,139,5,229,0,0,139,141,1,0,0,0,140, - 135,1,0,0,0,140,136,1,0,0,0,141,5,1,0,0,0,142,144,3,8,4,0,143,142, - 1,0,0,0,143,144,1,0,0,0,144,145,1,0,0,0,145,147,5,146,0,0,146,148, - 5,49,0,0,147,146,1,0,0,0,147,148,1,0,0,0,148,150,1,0,0,0,149,151, - 3,10,5,0,150,149,1,0,0,0,150,151,1,0,0,0,151,152,1,0,0,0,152,154, - 3,72,36,0,153,155,3,12,6,0,154,153,1,0,0,0,154,155,1,0,0,0,155,157, - 1,0,0,0,156,158,3,14,7,0,157,156,1,0,0,0,157,158,1,0,0,0,158,160, - 1,0,0,0,159,161,3,18,9,0,160,159,1,0,0,0,160,161,1,0,0,0,161,163, - 1,0,0,0,162,164,3,20,10,0,163,162,1,0,0,0,163,164,1,0,0,0,164,166, - 1,0,0,0,165,167,3,22,11,0,166,165,1,0,0,0,166,167,1,0,0,0,167,170, - 1,0,0,0,168,169,5,189,0,0,169,171,7,0,0,0,170,168,1,0,0,0,170,171, - 1,0,0,0,171,174,1,0,0,0,172,173,5,189,0,0,173,175,5,169,0,0,174, - 172,1,0,0,0,174,175,1,0,0,0,175,177,1,0,0,0,176,178,3,24,12,0,177, - 176,1,0,0,0,177,178,1,0,0,0,178,180,1,0,0,0,179,181,3,16,8,0,180, - 179,1,0,0,0,180,181,1,0,0,0,181,183,1,0,0,0,182,184,3,26,13,0,183, - 182,1,0,0,0,183,184,1,0,0,0,184,187,1,0,0,0,185,188,3,30,15,0,186, - 188,3,32,16,0,187,185,1,0,0,0,187,186,1,0,0,0,187,188,1,0,0,0,188, - 190,1,0,0,0,189,191,3,34,17,0,190,189,1,0,0,0,190,191,1,0,0,0,191, - 7,1,0,0,0,192,193,5,189,0,0,193,194,3,82,41,0,194,9,1,0,0,0,195, - 196,5,168,0,0,196,199,5,197,0,0,197,198,5,189,0,0,198,200,5,164, - 0,0,199,197,1,0,0,0,199,200,1,0,0,0,200,11,1,0,0,0,201,202,5,68, - 0,0,202,203,3,36,18,0,203,13,1,0,0,0,204,206,7,1,0,0,205,204,1,0, - 0,0,205,206,1,0,0,0,206,207,1,0,0,0,207,208,5,9,0,0,208,209,5,90, - 0,0,209,210,3,72,36,0,210,15,1,0,0,0,211,212,5,188,0,0,212,213,3, - 116,58,0,213,214,5,10,0,0,214,215,5,218,0,0,215,216,3,56,28,0,216, - 226,5,229,0,0,217,218,5,206,0,0,218,219,3,116,58,0,219,220,5,10, - 0,0,220,221,5,218,0,0,221,222,3,56,28,0,222,223,5,229,0,0,223,225, - 1,0,0,0,224,217,1,0,0,0,225,228,1,0,0,0,226,224,1,0,0,0,226,227, - 1,0,0,0,227,17,1,0,0,0,228,226,1,0,0,0,229,230,5,129,0,0,230,231, - 3,74,37,0,231,19,1,0,0,0,232,233,5,187,0,0,233,234,3,74,37,0,234, - 21,1,0,0,0,235,236,5,73,0,0,236,243,5,18,0,0,237,238,7,0,0,0,238, - 239,5,218,0,0,239,240,3,72,36,0,240,241,5,229,0,0,241,244,1,0,0, - 0,242,244,3,72,36,0,243,237,1,0,0,0,243,242,1,0,0,0,244,23,1,0,0, - 0,245,246,5,74,0,0,246,247,3,74,37,0,247,25,1,0,0,0,248,249,5,122, - 0,0,249,250,5,18,0,0,250,251,3,46,23,0,251,27,1,0,0,0,252,253,5, - 122,0,0,253,254,5,18,0,0,254,255,3,72,36,0,255,29,1,0,0,0,256,257, - 5,99,0,0,257,260,3,74,37,0,258,259,5,206,0,0,259,261,3,74,37,0,260, - 258,1,0,0,0,260,261,1,0,0,0,261,266,1,0,0,0,262,263,5,189,0,0,263, - 267,5,164,0,0,264,265,5,18,0,0,265,267,3,72,36,0,266,262,1,0,0,0, - 266,264,1,0,0,0,266,267,1,0,0,0,267,286,1,0,0,0,268,269,5,99,0,0, - 269,272,3,74,37,0,270,271,5,189,0,0,271,273,5,164,0,0,272,270,1, - 0,0,0,272,273,1,0,0,0,273,274,1,0,0,0,274,275,5,118,0,0,275,276, - 3,74,37,0,276,286,1,0,0,0,277,278,5,99,0,0,278,279,3,74,37,0,279, - 280,5,118,0,0,280,283,3,74,37,0,281,282,5,18,0,0,282,284,3,72,36, - 0,283,281,1,0,0,0,283,284,1,0,0,0,284,286,1,0,0,0,285,256,1,0,0, - 0,285,268,1,0,0,0,285,277,1,0,0,0,286,31,1,0,0,0,287,288,5,118,0, - 0,288,289,3,74,37,0,289,33,1,0,0,0,290,291,5,150,0,0,291,292,3,52, - 26,0,292,35,1,0,0,0,293,294,6,18,-1,0,294,296,3,90,45,0,295,297, - 5,61,0,0,296,295,1,0,0,0,296,297,1,0,0,0,297,299,1,0,0,0,298,300, - 3,44,22,0,299,298,1,0,0,0,299,300,1,0,0,0,300,306,1,0,0,0,301,302, - 5,218,0,0,302,303,3,36,18,0,303,304,5,229,0,0,304,306,1,0,0,0,305, - 293,1,0,0,0,305,301,1,0,0,0,306,321,1,0,0,0,307,308,10,3,0,0,308, - 309,3,40,20,0,309,310,3,36,18,4,310,320,1,0,0,0,311,313,10,4,0,0, - 312,314,3,38,19,0,313,312,1,0,0,0,313,314,1,0,0,0,314,315,1,0,0, - 0,315,316,5,90,0,0,316,317,3,36,18,0,317,318,3,42,21,0,318,320,1, - 0,0,0,319,307,1,0,0,0,319,311,1,0,0,0,320,323,1,0,0,0,321,319,1, - 0,0,0,321,322,1,0,0,0,322,37,1,0,0,0,323,321,1,0,0,0,324,326,7,2, - 0,0,325,324,1,0,0,0,325,326,1,0,0,0,326,327,1,0,0,0,327,334,5,84, - 0,0,328,330,5,84,0,0,329,331,7,2,0,0,330,329,1,0,0,0,330,331,1,0, - 0,0,331,334,1,0,0,0,332,334,7,2,0,0,333,325,1,0,0,0,333,328,1,0, - 0,0,333,332,1,0,0,0,334,368,1,0,0,0,335,337,7,3,0,0,336,335,1,0, - 0,0,336,337,1,0,0,0,337,338,1,0,0,0,338,340,7,4,0,0,339,341,5,123, - 0,0,340,339,1,0,0,0,340,341,1,0,0,0,341,350,1,0,0,0,342,344,7,4, - 0,0,343,345,5,123,0,0,344,343,1,0,0,0,344,345,1,0,0,0,345,347,1, - 0,0,0,346,348,7,3,0,0,347,346,1,0,0,0,347,348,1,0,0,0,348,350,1, - 0,0,0,349,336,1,0,0,0,349,342,1,0,0,0,350,368,1,0,0,0,351,353,7, - 5,0,0,352,351,1,0,0,0,352,353,1,0,0,0,353,354,1,0,0,0,354,356,5, - 69,0,0,355,357,5,123,0,0,356,355,1,0,0,0,356,357,1,0,0,0,357,366, - 1,0,0,0,358,360,5,69,0,0,359,361,5,123,0,0,360,359,1,0,0,0,360,361, - 1,0,0,0,361,363,1,0,0,0,362,364,7,5,0,0,363,362,1,0,0,0,363,364, - 1,0,0,0,364,366,1,0,0,0,365,352,1,0,0,0,365,358,1,0,0,0,366,368, - 1,0,0,0,367,333,1,0,0,0,367,349,1,0,0,0,367,365,1,0,0,0,368,39,1, - 0,0,0,369,370,5,31,0,0,370,373,5,90,0,0,371,373,5,206,0,0,372,369, - 1,0,0,0,372,371,1,0,0,0,373,41,1,0,0,0,374,375,5,119,0,0,375,384, - 3,72,36,0,376,377,5,179,0,0,377,378,5,218,0,0,378,379,3,72,36,0, - 379,380,5,229,0,0,380,384,1,0,0,0,381,382,5,179,0,0,382,384,3,72, - 36,0,383,374,1,0,0,0,383,376,1,0,0,0,383,381,1,0,0,0,384,43,1,0, - 0,0,385,386,5,144,0,0,386,389,3,50,25,0,387,388,5,118,0,0,388,390, - 3,50,25,0,389,387,1,0,0,0,389,390,1,0,0,0,390,45,1,0,0,0,391,396, - 3,48,24,0,392,393,5,206,0,0,393,395,3,48,24,0,394,392,1,0,0,0,395, - 398,1,0,0,0,396,394,1,0,0,0,396,397,1,0,0,0,397,47,1,0,0,0,398,396, - 1,0,0,0,399,401,3,74,37,0,400,402,7,6,0,0,401,400,1,0,0,0,401,402, - 1,0,0,0,402,405,1,0,0,0,403,404,5,117,0,0,404,406,7,7,0,0,405,403, - 1,0,0,0,405,406,1,0,0,0,406,409,1,0,0,0,407,408,5,26,0,0,408,410, - 5,199,0,0,409,407,1,0,0,0,409,410,1,0,0,0,410,49,1,0,0,0,411,414, - 3,104,52,0,412,413,5,231,0,0,413,415,3,104,52,0,414,412,1,0,0,0, - 414,415,1,0,0,0,415,51,1,0,0,0,416,421,3,54,27,0,417,418,5,206,0, - 0,418,420,3,54,27,0,419,417,1,0,0,0,420,423,1,0,0,0,421,419,1,0, - 0,0,421,422,1,0,0,0,422,53,1,0,0,0,423,421,1,0,0,0,424,425,3,116, - 58,0,425,426,5,212,0,0,426,427,3,106,53,0,427,55,1,0,0,0,428,430, - 3,58,29,0,429,428,1,0,0,0,429,430,1,0,0,0,430,432,1,0,0,0,431,433, - 3,60,30,0,432,431,1,0,0,0,432,433,1,0,0,0,433,435,1,0,0,0,434,436, - 3,62,31,0,435,434,1,0,0,0,435,436,1,0,0,0,436,57,1,0,0,0,437,438, - 5,126,0,0,438,439,5,18,0,0,439,440,3,72,36,0,440,59,1,0,0,0,441, - 442,5,122,0,0,442,443,5,18,0,0,443,444,3,46,23,0,444,61,1,0,0,0, - 445,446,7,8,0,0,446,447,3,64,32,0,447,63,1,0,0,0,448,455,3,66,33, - 0,449,450,5,16,0,0,450,451,3,66,33,0,451,452,5,6,0,0,452,453,3,66, - 33,0,453,455,1,0,0,0,454,448,1,0,0,0,454,449,1,0,0,0,455,65,1,0, - 0,0,456,457,5,33,0,0,457,469,5,142,0,0,458,459,5,175,0,0,459,469, - 5,128,0,0,460,461,5,175,0,0,461,469,5,64,0,0,462,463,3,104,52,0, - 463,464,5,128,0,0,464,469,1,0,0,0,465,466,3,104,52,0,466,467,5,64, - 0,0,467,469,1,0,0,0,468,456,1,0,0,0,468,458,1,0,0,0,468,460,1,0, - 0,0,468,462,1,0,0,0,468,465,1,0,0,0,469,67,1,0,0,0,470,471,3,74, - 37,0,471,472,5,0,0,1,472,69,1,0,0,0,473,521,3,116,58,0,474,475,3, - 116,58,0,475,476,5,218,0,0,476,477,3,116,58,0,477,484,3,70,35,0, - 478,479,5,206,0,0,479,480,3,116,58,0,480,481,3,70,35,0,481,483,1, - 0,0,0,482,478,1,0,0,0,483,486,1,0,0,0,484,482,1,0,0,0,484,485,1, - 0,0,0,485,487,1,0,0,0,486,484,1,0,0,0,487,488,5,229,0,0,488,521, - 1,0,0,0,489,490,3,116,58,0,490,491,5,218,0,0,491,496,3,118,59,0, - 492,493,5,206,0,0,493,495,3,118,59,0,494,492,1,0,0,0,495,498,1,0, - 0,0,496,494,1,0,0,0,496,497,1,0,0,0,497,499,1,0,0,0,498,496,1,0, - 0,0,499,500,5,229,0,0,500,521,1,0,0,0,501,502,3,116,58,0,502,503, - 5,218,0,0,503,508,3,70,35,0,504,505,5,206,0,0,505,507,3,70,35,0, - 506,504,1,0,0,0,507,510,1,0,0,0,508,506,1,0,0,0,508,509,1,0,0,0, - 509,511,1,0,0,0,510,508,1,0,0,0,511,512,5,229,0,0,512,521,1,0,0, - 0,513,514,3,116,58,0,514,516,5,218,0,0,515,517,3,72,36,0,516,515, - 1,0,0,0,516,517,1,0,0,0,517,518,1,0,0,0,518,519,5,229,0,0,519,521, - 1,0,0,0,520,473,1,0,0,0,520,474,1,0,0,0,520,489,1,0,0,0,520,501, - 1,0,0,0,520,513,1,0,0,0,521,71,1,0,0,0,522,527,3,74,37,0,523,524, - 5,206,0,0,524,526,3,74,37,0,525,523,1,0,0,0,526,529,1,0,0,0,527, - 525,1,0,0,0,527,528,1,0,0,0,528,73,1,0,0,0,529,527,1,0,0,0,530,531, - 6,37,-1,0,531,533,5,19,0,0,532,534,3,74,37,0,533,532,1,0,0,0,533, - 534,1,0,0,0,534,540,1,0,0,0,535,536,5,186,0,0,536,537,3,74,37,0, - 537,538,5,163,0,0,538,539,3,74,37,0,539,541,1,0,0,0,540,535,1,0, - 0,0,541,542,1,0,0,0,542,540,1,0,0,0,542,543,1,0,0,0,543,546,1,0, - 0,0,544,545,5,52,0,0,545,547,3,74,37,0,546,544,1,0,0,0,546,547,1, - 0,0,0,547,548,1,0,0,0,548,549,5,53,0,0,549,660,1,0,0,0,550,551,5, - 20,0,0,551,552,5,218,0,0,552,553,3,74,37,0,553,554,5,10,0,0,554, - 555,3,70,35,0,555,556,5,229,0,0,556,660,1,0,0,0,557,558,5,36,0,0, - 558,660,5,199,0,0,559,560,5,59,0,0,560,561,5,218,0,0,561,562,3,108, - 54,0,562,563,5,68,0,0,563,564,3,74,37,0,564,565,5,229,0,0,565,660, - 1,0,0,0,566,567,5,86,0,0,567,568,3,74,37,0,568,569,3,108,54,0,569, - 660,1,0,0,0,570,571,5,155,0,0,571,572,5,218,0,0,572,573,3,74,37, - 0,573,574,5,68,0,0,574,577,3,74,37,0,575,576,5,65,0,0,576,578,3, - 74,37,0,577,575,1,0,0,0,577,578,1,0,0,0,578,579,1,0,0,0,579,580, - 5,229,0,0,580,660,1,0,0,0,581,582,5,166,0,0,582,660,5,199,0,0,583, - 584,5,171,0,0,584,585,5,218,0,0,585,586,7,9,0,0,586,587,5,199,0, - 0,587,588,5,68,0,0,588,589,3,74,37,0,589,590,5,229,0,0,590,660,1, - 0,0,0,591,592,3,116,58,0,592,594,5,218,0,0,593,595,3,72,36,0,594, - 593,1,0,0,0,594,595,1,0,0,0,595,596,1,0,0,0,596,597,5,229,0,0,597, - 598,1,0,0,0,598,599,5,125,0,0,599,600,5,218,0,0,600,601,3,56,28, - 0,601,602,5,229,0,0,602,660,1,0,0,0,603,604,3,116,58,0,604,606,5, - 218,0,0,605,607,3,72,36,0,606,605,1,0,0,0,606,607,1,0,0,0,607,608, - 1,0,0,0,608,609,5,229,0,0,609,610,1,0,0,0,610,611,5,125,0,0,611, - 612,3,116,58,0,612,660,1,0,0,0,613,619,3,116,58,0,614,616,5,218, - 0,0,615,617,3,72,36,0,616,615,1,0,0,0,616,617,1,0,0,0,617,618,1, - 0,0,0,618,620,5,229,0,0,619,614,1,0,0,0,619,620,1,0,0,0,620,621, - 1,0,0,0,621,623,5,218,0,0,622,624,5,49,0,0,623,622,1,0,0,0,623,624, - 1,0,0,0,624,626,1,0,0,0,625,627,3,76,38,0,626,625,1,0,0,0,626,627, - 1,0,0,0,627,628,1,0,0,0,628,629,5,229,0,0,629,660,1,0,0,0,630,660, - 3,106,53,0,631,632,5,208,0,0,632,660,3,74,37,17,633,634,5,115,0, - 0,634,660,3,74,37,12,635,636,3,94,47,0,636,637,5,210,0,0,637,639, - 1,0,0,0,638,635,1,0,0,0,638,639,1,0,0,0,639,640,1,0,0,0,640,660, - 5,202,0,0,641,642,5,218,0,0,642,643,3,2,1,0,643,644,5,229,0,0,644, - 660,1,0,0,0,645,646,5,218,0,0,646,647,3,74,37,0,647,648,5,229,0, - 0,648,660,1,0,0,0,649,650,5,218,0,0,650,651,3,72,36,0,651,652,5, - 229,0,0,652,660,1,0,0,0,653,655,5,217,0,0,654,656,3,72,36,0,655, - 654,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,660,5,228,0,0,658, - 660,3,86,43,0,659,530,1,0,0,0,659,550,1,0,0,0,659,557,1,0,0,0,659, - 559,1,0,0,0,659,566,1,0,0,0,659,570,1,0,0,0,659,581,1,0,0,0,659, - 583,1,0,0,0,659,591,1,0,0,0,659,603,1,0,0,0,659,613,1,0,0,0,659, - 630,1,0,0,0,659,631,1,0,0,0,659,633,1,0,0,0,659,638,1,0,0,0,659, - 641,1,0,0,0,659,645,1,0,0,0,659,649,1,0,0,0,659,653,1,0,0,0,659, - 658,1,0,0,0,660,745,1,0,0,0,661,665,10,16,0,0,662,666,5,202,0,0, - 663,666,5,231,0,0,664,666,5,222,0,0,665,662,1,0,0,0,665,663,1,0, - 0,0,665,664,1,0,0,0,666,667,1,0,0,0,667,744,3,74,37,17,668,672,10, - 15,0,0,669,673,5,223,0,0,670,673,5,208,0,0,671,673,5,207,0,0,672, - 669,1,0,0,0,672,670,1,0,0,0,672,671,1,0,0,0,673,674,1,0,0,0,674, - 744,3,74,37,16,675,694,10,14,0,0,676,695,5,211,0,0,677,695,5,212, - 0,0,678,695,5,221,0,0,679,695,5,219,0,0,680,695,5,220,0,0,681,695, - 5,213,0,0,682,695,5,214,0,0,683,685,5,115,0,0,684,683,1,0,0,0,684, - 685,1,0,0,0,685,686,1,0,0,0,686,688,5,80,0,0,687,689,5,25,0,0,688, - 687,1,0,0,0,688,689,1,0,0,0,689,695,1,0,0,0,690,692,5,115,0,0,691, - 690,1,0,0,0,691,692,1,0,0,0,692,693,1,0,0,0,693,695,7,10,0,0,694, - 676,1,0,0,0,694,677,1,0,0,0,694,678,1,0,0,0,694,679,1,0,0,0,694, - 680,1,0,0,0,694,681,1,0,0,0,694,682,1,0,0,0,694,684,1,0,0,0,694, - 691,1,0,0,0,695,696,1,0,0,0,696,744,3,74,37,15,697,698,10,11,0,0, - 698,699,5,6,0,0,699,744,3,74,37,12,700,701,10,10,0,0,701,702,5,121, - 0,0,702,744,3,74,37,11,703,705,10,9,0,0,704,706,5,115,0,0,705,704, - 1,0,0,0,705,706,1,0,0,0,706,707,1,0,0,0,707,708,5,16,0,0,708,709, - 3,74,37,0,709,710,5,6,0,0,710,711,3,74,37,10,711,744,1,0,0,0,712, - 713,10,8,0,0,713,714,5,224,0,0,714,715,3,74,37,0,715,716,5,205,0, - 0,716,717,3,74,37,8,717,744,1,0,0,0,718,719,10,20,0,0,719,720,5, - 217,0,0,720,721,3,74,37,0,721,722,5,228,0,0,722,744,1,0,0,0,723, - 724,10,19,0,0,724,725,5,210,0,0,725,744,5,197,0,0,726,727,10,18, - 0,0,727,728,5,210,0,0,728,744,3,116,58,0,729,730,10,13,0,0,730,732, - 5,88,0,0,731,733,5,115,0,0,732,731,1,0,0,0,732,733,1,0,0,0,733,734, - 1,0,0,0,734,744,5,116,0,0,735,741,10,7,0,0,736,742,3,114,57,0,737, - 738,5,10,0,0,738,742,3,116,58,0,739,740,5,10,0,0,740,742,5,199,0, - 0,741,736,1,0,0,0,741,737,1,0,0,0,741,739,1,0,0,0,742,744,1,0,0, - 0,743,661,1,0,0,0,743,668,1,0,0,0,743,675,1,0,0,0,743,697,1,0,0, - 0,743,700,1,0,0,0,743,703,1,0,0,0,743,712,1,0,0,0,743,718,1,0,0, - 0,743,723,1,0,0,0,743,726,1,0,0,0,743,729,1,0,0,0,743,735,1,0,0, - 0,744,747,1,0,0,0,745,743,1,0,0,0,745,746,1,0,0,0,746,75,1,0,0,0, - 747,745,1,0,0,0,748,753,3,78,39,0,749,750,5,206,0,0,750,752,3,78, - 39,0,751,749,1,0,0,0,752,755,1,0,0,0,753,751,1,0,0,0,753,754,1,0, - 0,0,754,77,1,0,0,0,755,753,1,0,0,0,756,759,3,80,40,0,757,759,3,74, - 37,0,758,756,1,0,0,0,758,757,1,0,0,0,759,79,1,0,0,0,760,761,5,218, - 0,0,761,766,3,116,58,0,762,763,5,206,0,0,763,765,3,116,58,0,764, - 762,1,0,0,0,765,768,1,0,0,0,766,764,1,0,0,0,766,767,1,0,0,0,767, - 769,1,0,0,0,768,766,1,0,0,0,769,770,5,229,0,0,770,780,1,0,0,0,771, - 776,3,116,58,0,772,773,5,206,0,0,773,775,3,116,58,0,774,772,1,0, - 0,0,775,778,1,0,0,0,776,774,1,0,0,0,776,777,1,0,0,0,777,780,1,0, - 0,0,778,776,1,0,0,0,779,760,1,0,0,0,779,771,1,0,0,0,780,781,1,0, - 0,0,781,782,5,201,0,0,782,783,3,74,37,0,783,81,1,0,0,0,784,789,3, - 84,42,0,785,786,5,206,0,0,786,788,3,84,42,0,787,785,1,0,0,0,788, - 791,1,0,0,0,789,787,1,0,0,0,789,790,1,0,0,0,790,83,1,0,0,0,791,789, - 1,0,0,0,792,793,3,116,58,0,793,794,5,10,0,0,794,795,5,218,0,0,795, - 796,3,2,1,0,796,797,5,229,0,0,797,803,1,0,0,0,798,799,3,74,37,0, - 799,800,5,10,0,0,800,801,3,116,58,0,801,803,1,0,0,0,802,792,1,0, - 0,0,802,798,1,0,0,0,803,85,1,0,0,0,804,812,5,200,0,0,805,806,3,94, - 47,0,806,807,5,210,0,0,807,809,1,0,0,0,808,805,1,0,0,0,808,809,1, - 0,0,0,809,810,1,0,0,0,810,812,3,88,44,0,811,804,1,0,0,0,811,808, - 1,0,0,0,812,87,1,0,0,0,813,818,3,116,58,0,814,815,5,210,0,0,815, - 817,3,116,58,0,816,814,1,0,0,0,817,820,1,0,0,0,818,816,1,0,0,0,818, - 819,1,0,0,0,819,89,1,0,0,0,820,818,1,0,0,0,821,822,6,45,-1,0,822, - 829,3,94,47,0,823,829,3,92,46,0,824,825,5,218,0,0,825,826,3,2,1, - 0,826,827,5,229,0,0,827,829,1,0,0,0,828,821,1,0,0,0,828,823,1,0, - 0,0,828,824,1,0,0,0,829,838,1,0,0,0,830,834,10,1,0,0,831,835,3,114, - 57,0,832,833,5,10,0,0,833,835,3,116,58,0,834,831,1,0,0,0,834,832, - 1,0,0,0,835,837,1,0,0,0,836,830,1,0,0,0,837,840,1,0,0,0,838,836, - 1,0,0,0,838,839,1,0,0,0,839,91,1,0,0,0,840,838,1,0,0,0,841,842,3, - 116,58,0,842,844,5,218,0,0,843,845,3,96,48,0,844,843,1,0,0,0,844, - 845,1,0,0,0,845,846,1,0,0,0,846,847,5,229,0,0,847,93,1,0,0,0,848, - 849,3,100,50,0,849,850,5,210,0,0,850,852,1,0,0,0,851,848,1,0,0,0, - 851,852,1,0,0,0,852,853,1,0,0,0,853,854,3,116,58,0,854,95,1,0,0, - 0,855,860,3,98,49,0,856,857,5,206,0,0,857,859,3,98,49,0,858,856, - 1,0,0,0,859,862,1,0,0,0,860,858,1,0,0,0,860,861,1,0,0,0,861,97,1, - 0,0,0,862,860,1,0,0,0,863,867,3,88,44,0,864,867,3,92,46,0,865,867, - 3,106,53,0,866,863,1,0,0,0,866,864,1,0,0,0,866,865,1,0,0,0,867,99, - 1,0,0,0,868,869,3,116,58,0,869,101,1,0,0,0,870,879,5,195,0,0,871, - 872,5,210,0,0,872,879,7,11,0,0,873,874,5,197,0,0,874,876,5,210,0, - 0,875,877,7,11,0,0,876,875,1,0,0,0,876,877,1,0,0,0,877,879,1,0,0, - 0,878,870,1,0,0,0,878,871,1,0,0,0,878,873,1,0,0,0,879,103,1,0,0, - 0,880,882,7,12,0,0,881,880,1,0,0,0,881,882,1,0,0,0,882,889,1,0,0, - 0,883,890,3,102,51,0,884,890,5,196,0,0,885,890,5,197,0,0,886,890, - 5,198,0,0,887,890,5,82,0,0,888,890,5,113,0,0,889,883,1,0,0,0,889, - 884,1,0,0,0,889,885,1,0,0,0,889,886,1,0,0,0,889,887,1,0,0,0,889, - 888,1,0,0,0,890,105,1,0,0,0,891,895,3,104,52,0,892,895,5,199,0,0, - 893,895,5,116,0,0,894,891,1,0,0,0,894,892,1,0,0,0,894,893,1,0,0, - 0,895,107,1,0,0,0,896,897,7,13,0,0,897,109,1,0,0,0,898,899,7,14, - 0,0,899,111,1,0,0,0,900,901,7,15,0,0,901,113,1,0,0,0,902,905,5,194, - 0,0,903,905,3,112,56,0,904,902,1,0,0,0,904,903,1,0,0,0,905,115,1, - 0,0,0,906,910,5,194,0,0,907,910,3,108,54,0,908,910,3,110,55,0,909, - 906,1,0,0,0,909,907,1,0,0,0,909,908,1,0,0,0,910,117,1,0,0,0,911, - 912,5,199,0,0,912,913,5,212,0,0,913,914,3,104,52,0,914,119,1,0,0, - 0,115,122,132,140,143,147,150,154,157,160,163,166,170,174,177,180, - 183,187,190,199,205,226,243,260,266,272,283,285,296,299,305,313, - 319,321,325,330,333,336,340,344,347,349,352,356,360,363,365,367, - 372,383,389,396,401,405,409,414,421,429,432,435,454,468,484,496, - 508,516,520,527,533,542,546,577,594,606,616,619,623,626,638,655, - 659,665,672,684,688,691,694,705,732,741,743,745,753,758,766,776, - 779,789,802,808,811,818,828,834,838,844,851,860,866,876,878,881, - 889,894,904,909 + 37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,739,8,37,1,37,1,37,1, + 37,1,37,1,37,1,37,1,37,3,37,748,8,37,5,37,750,8,37,10,37,12,37,753, + 9,37,1,38,1,38,1,38,5,38,758,8,38,10,38,12,38,761,9,38,1,39,1,39, + 3,39,765,8,39,1,40,1,40,1,40,1,40,5,40,771,8,40,10,40,12,40,774, + 9,40,1,40,1,40,1,40,1,40,1,40,5,40,781,8,40,10,40,12,40,784,9,40, + 3,40,786,8,40,1,40,1,40,1,40,1,41,1,41,1,41,5,41,794,8,41,10,41, + 12,41,797,9,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, + 3,42,809,8,42,1,43,1,43,1,43,1,43,3,43,815,8,43,1,43,3,43,818,8, + 43,1,44,1,44,1,44,5,44,823,8,44,10,44,12,44,826,9,44,1,45,1,45,1, + 45,1,45,1,45,1,45,1,45,3,45,835,8,45,1,45,1,45,1,45,1,45,3,45,841, + 8,45,5,45,843,8,45,10,45,12,45,846,9,45,1,46,1,46,1,46,3,46,851, + 8,46,1,46,1,46,1,47,1,47,1,47,3,47,858,8,47,1,47,1,47,1,48,1,48, + 1,48,5,48,865,8,48,10,48,12,48,868,9,48,1,49,1,49,1,49,3,49,873, + 8,49,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,51,3,51,883,8,51,3,51, + 885,8,51,1,52,3,52,888,8,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,896, + 8,52,1,53,1,53,1,53,3,53,901,8,53,1,54,1,54,1,55,1,55,1,56,1,56, + 1,57,1,57,3,57,911,8,57,1,58,1,58,1,58,3,58,916,8,58,1,59,1,59,1, + 59,1,59,1,59,0,3,36,74,90,60,0,2,4,6,8,10,12,14,16,18,20,22,24,26, + 28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70, + 72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110, + 112,114,116,118,0,16,2,0,32,32,141,141,2,0,84,84,96,96,3,0,4,4,8, + 8,12,12,4,0,4,4,7,8,12,12,147,147,2,0,96,96,140,140,2,0,4,4,8,8, + 2,0,11,11,42,43,2,0,62,62,93,93,2,0,133,133,143,143,3,0,17,17,95, + 95,170,170,2,0,79,79,98,98,1,0,196,197,2,0,208,208,227,227,8,0,37, + 37,76,76,108,108,110,110,132,132,145,145,185,185,190,190,13,0,2, + 24,26,36,38,75,77,81,83,107,109,109,111,112,114,115,117,130,133, + 144,146,184,186,189,191,192,4,0,36,36,62,62,77,77,91,91,1041,0,122, + 1,0,0,0,2,126,1,0,0,0,4,140,1,0,0,0,6,143,1,0,0,0,8,192,1,0,0,0, + 10,195,1,0,0,0,12,201,1,0,0,0,14,205,1,0,0,0,16,211,1,0,0,0,18,229, + 1,0,0,0,20,232,1,0,0,0,22,235,1,0,0,0,24,245,1,0,0,0,26,248,1,0, + 0,0,28,252,1,0,0,0,30,285,1,0,0,0,32,287,1,0,0,0,34,290,1,0,0,0, + 36,305,1,0,0,0,38,367,1,0,0,0,40,372,1,0,0,0,42,383,1,0,0,0,44,385, + 1,0,0,0,46,391,1,0,0,0,48,399,1,0,0,0,50,411,1,0,0,0,52,416,1,0, + 0,0,54,424,1,0,0,0,56,429,1,0,0,0,58,437,1,0,0,0,60,441,1,0,0,0, + 62,445,1,0,0,0,64,454,1,0,0,0,66,468,1,0,0,0,68,470,1,0,0,0,70,520, + 1,0,0,0,72,522,1,0,0,0,74,659,1,0,0,0,76,754,1,0,0,0,78,764,1,0, + 0,0,80,785,1,0,0,0,82,790,1,0,0,0,84,808,1,0,0,0,86,817,1,0,0,0, + 88,819,1,0,0,0,90,834,1,0,0,0,92,847,1,0,0,0,94,857,1,0,0,0,96,861, + 1,0,0,0,98,872,1,0,0,0,100,874,1,0,0,0,102,884,1,0,0,0,104,887,1, + 0,0,0,106,900,1,0,0,0,108,902,1,0,0,0,110,904,1,0,0,0,112,906,1, + 0,0,0,114,910,1,0,0,0,116,915,1,0,0,0,118,917,1,0,0,0,120,123,3, + 2,1,0,121,123,3,6,3,0,122,120,1,0,0,0,122,121,1,0,0,0,123,124,1, + 0,0,0,124,125,5,0,0,1,125,1,1,0,0,0,126,132,3,4,2,0,127,128,5,176, + 0,0,128,129,5,4,0,0,129,131,3,4,2,0,130,127,1,0,0,0,131,134,1,0, + 0,0,132,130,1,0,0,0,132,133,1,0,0,0,133,3,1,0,0,0,134,132,1,0,0, + 0,135,141,3,6,3,0,136,137,5,220,0,0,137,138,3,2,1,0,138,139,5,235, + 0,0,139,141,1,0,0,0,140,135,1,0,0,0,140,136,1,0,0,0,141,5,1,0,0, + 0,142,144,3,8,4,0,143,142,1,0,0,0,143,144,1,0,0,0,144,145,1,0,0, + 0,145,147,5,146,0,0,146,148,5,49,0,0,147,146,1,0,0,0,147,148,1,0, + 0,0,148,150,1,0,0,0,149,151,3,10,5,0,150,149,1,0,0,0,150,151,1,0, + 0,0,151,152,1,0,0,0,152,154,3,72,36,0,153,155,3,12,6,0,154,153,1, + 0,0,0,154,155,1,0,0,0,155,157,1,0,0,0,156,158,3,14,7,0,157,156,1, + 0,0,0,157,158,1,0,0,0,158,160,1,0,0,0,159,161,3,18,9,0,160,159,1, + 0,0,0,160,161,1,0,0,0,161,163,1,0,0,0,162,164,3,20,10,0,163,162, + 1,0,0,0,163,164,1,0,0,0,164,166,1,0,0,0,165,167,3,22,11,0,166,165, + 1,0,0,0,166,167,1,0,0,0,167,170,1,0,0,0,168,169,5,189,0,0,169,171, + 7,0,0,0,170,168,1,0,0,0,170,171,1,0,0,0,171,174,1,0,0,0,172,173, + 5,189,0,0,173,175,5,169,0,0,174,172,1,0,0,0,174,175,1,0,0,0,175, + 177,1,0,0,0,176,178,3,24,12,0,177,176,1,0,0,0,177,178,1,0,0,0,178, + 180,1,0,0,0,179,181,3,16,8,0,180,179,1,0,0,0,180,181,1,0,0,0,181, + 183,1,0,0,0,182,184,3,26,13,0,183,182,1,0,0,0,183,184,1,0,0,0,184, + 187,1,0,0,0,185,188,3,30,15,0,186,188,3,32,16,0,187,185,1,0,0,0, + 187,186,1,0,0,0,187,188,1,0,0,0,188,190,1,0,0,0,189,191,3,34,17, + 0,190,189,1,0,0,0,190,191,1,0,0,0,191,7,1,0,0,0,192,193,5,189,0, + 0,193,194,3,82,41,0,194,9,1,0,0,0,195,196,5,168,0,0,196,199,5,197, + 0,0,197,198,5,189,0,0,198,200,5,164,0,0,199,197,1,0,0,0,199,200, + 1,0,0,0,200,11,1,0,0,0,201,202,5,68,0,0,202,203,3,36,18,0,203,13, + 1,0,0,0,204,206,7,1,0,0,205,204,1,0,0,0,205,206,1,0,0,0,206,207, + 1,0,0,0,207,208,5,9,0,0,208,209,5,90,0,0,209,210,3,72,36,0,210,15, + 1,0,0,0,211,212,5,188,0,0,212,213,3,116,58,0,213,214,5,10,0,0,214, + 215,5,220,0,0,215,216,3,56,28,0,216,226,5,235,0,0,217,218,5,206, + 0,0,218,219,3,116,58,0,219,220,5,10,0,0,220,221,5,220,0,0,221,222, + 3,56,28,0,222,223,5,235,0,0,223,225,1,0,0,0,224,217,1,0,0,0,225, + 228,1,0,0,0,226,224,1,0,0,0,226,227,1,0,0,0,227,17,1,0,0,0,228,226, + 1,0,0,0,229,230,5,129,0,0,230,231,3,74,37,0,231,19,1,0,0,0,232,233, + 5,187,0,0,233,234,3,74,37,0,234,21,1,0,0,0,235,236,5,73,0,0,236, + 243,5,18,0,0,237,238,7,0,0,0,238,239,5,220,0,0,239,240,3,72,36,0, + 240,241,5,235,0,0,241,244,1,0,0,0,242,244,3,72,36,0,243,237,1,0, + 0,0,243,242,1,0,0,0,244,23,1,0,0,0,245,246,5,74,0,0,246,247,3,74, + 37,0,247,25,1,0,0,0,248,249,5,122,0,0,249,250,5,18,0,0,250,251,3, + 46,23,0,251,27,1,0,0,0,252,253,5,122,0,0,253,254,5,18,0,0,254,255, + 3,72,36,0,255,29,1,0,0,0,256,257,5,99,0,0,257,260,3,74,37,0,258, + 259,5,206,0,0,259,261,3,74,37,0,260,258,1,0,0,0,260,261,1,0,0,0, + 261,266,1,0,0,0,262,263,5,189,0,0,263,267,5,164,0,0,264,265,5,18, + 0,0,265,267,3,72,36,0,266,262,1,0,0,0,266,264,1,0,0,0,266,267,1, + 0,0,0,267,286,1,0,0,0,268,269,5,99,0,0,269,272,3,74,37,0,270,271, + 5,189,0,0,271,273,5,164,0,0,272,270,1,0,0,0,272,273,1,0,0,0,273, + 274,1,0,0,0,274,275,5,118,0,0,275,276,3,74,37,0,276,286,1,0,0,0, + 277,278,5,99,0,0,278,279,3,74,37,0,279,280,5,118,0,0,280,283,3,74, + 37,0,281,282,5,18,0,0,282,284,3,72,36,0,283,281,1,0,0,0,283,284, + 1,0,0,0,284,286,1,0,0,0,285,256,1,0,0,0,285,268,1,0,0,0,285,277, + 1,0,0,0,286,31,1,0,0,0,287,288,5,118,0,0,288,289,3,74,37,0,289,33, + 1,0,0,0,290,291,5,150,0,0,291,292,3,52,26,0,292,35,1,0,0,0,293,294, + 6,18,-1,0,294,296,3,90,45,0,295,297,5,61,0,0,296,295,1,0,0,0,296, + 297,1,0,0,0,297,299,1,0,0,0,298,300,3,44,22,0,299,298,1,0,0,0,299, + 300,1,0,0,0,300,306,1,0,0,0,301,302,5,220,0,0,302,303,3,36,18,0, + 303,304,5,235,0,0,304,306,1,0,0,0,305,293,1,0,0,0,305,301,1,0,0, + 0,306,321,1,0,0,0,307,308,10,3,0,0,308,309,3,40,20,0,309,310,3,36, + 18,4,310,320,1,0,0,0,311,313,10,4,0,0,312,314,3,38,19,0,313,312, + 1,0,0,0,313,314,1,0,0,0,314,315,1,0,0,0,315,316,5,90,0,0,316,317, + 3,36,18,0,317,318,3,42,21,0,318,320,1,0,0,0,319,307,1,0,0,0,319, + 311,1,0,0,0,320,323,1,0,0,0,321,319,1,0,0,0,321,322,1,0,0,0,322, + 37,1,0,0,0,323,321,1,0,0,0,324,326,7,2,0,0,325,324,1,0,0,0,325,326, + 1,0,0,0,326,327,1,0,0,0,327,334,5,84,0,0,328,330,5,84,0,0,329,331, + 7,2,0,0,330,329,1,0,0,0,330,331,1,0,0,0,331,334,1,0,0,0,332,334, + 7,2,0,0,333,325,1,0,0,0,333,328,1,0,0,0,333,332,1,0,0,0,334,368, + 1,0,0,0,335,337,7,3,0,0,336,335,1,0,0,0,336,337,1,0,0,0,337,338, + 1,0,0,0,338,340,7,4,0,0,339,341,5,123,0,0,340,339,1,0,0,0,340,341, + 1,0,0,0,341,350,1,0,0,0,342,344,7,4,0,0,343,345,5,123,0,0,344,343, + 1,0,0,0,344,345,1,0,0,0,345,347,1,0,0,0,346,348,7,3,0,0,347,346, + 1,0,0,0,347,348,1,0,0,0,348,350,1,0,0,0,349,336,1,0,0,0,349,342, + 1,0,0,0,350,368,1,0,0,0,351,353,7,5,0,0,352,351,1,0,0,0,352,353, + 1,0,0,0,353,354,1,0,0,0,354,356,5,69,0,0,355,357,5,123,0,0,356,355, + 1,0,0,0,356,357,1,0,0,0,357,366,1,0,0,0,358,360,5,69,0,0,359,361, + 5,123,0,0,360,359,1,0,0,0,360,361,1,0,0,0,361,363,1,0,0,0,362,364, + 7,5,0,0,363,362,1,0,0,0,363,364,1,0,0,0,364,366,1,0,0,0,365,352, + 1,0,0,0,365,358,1,0,0,0,366,368,1,0,0,0,367,333,1,0,0,0,367,349, + 1,0,0,0,367,365,1,0,0,0,368,39,1,0,0,0,369,370,5,31,0,0,370,373, + 5,90,0,0,371,373,5,206,0,0,372,369,1,0,0,0,372,371,1,0,0,0,373,41, + 1,0,0,0,374,375,5,119,0,0,375,384,3,72,36,0,376,377,5,179,0,0,377, + 378,5,220,0,0,378,379,3,72,36,0,379,380,5,235,0,0,380,384,1,0,0, + 0,381,382,5,179,0,0,382,384,3,72,36,0,383,374,1,0,0,0,383,376,1, + 0,0,0,383,381,1,0,0,0,384,43,1,0,0,0,385,386,5,144,0,0,386,389,3, + 50,25,0,387,388,5,118,0,0,388,390,3,50,25,0,389,387,1,0,0,0,389, + 390,1,0,0,0,390,45,1,0,0,0,391,396,3,48,24,0,392,393,5,206,0,0,393, + 395,3,48,24,0,394,392,1,0,0,0,395,398,1,0,0,0,396,394,1,0,0,0,396, + 397,1,0,0,0,397,47,1,0,0,0,398,396,1,0,0,0,399,401,3,74,37,0,400, + 402,7,6,0,0,401,400,1,0,0,0,401,402,1,0,0,0,402,405,1,0,0,0,403, + 404,5,117,0,0,404,406,7,7,0,0,405,403,1,0,0,0,405,406,1,0,0,0,406, + 409,1,0,0,0,407,408,5,26,0,0,408,410,5,199,0,0,409,407,1,0,0,0,409, + 410,1,0,0,0,410,49,1,0,0,0,411,414,3,104,52,0,412,413,5,237,0,0, + 413,415,3,104,52,0,414,412,1,0,0,0,414,415,1,0,0,0,415,51,1,0,0, + 0,416,421,3,54,27,0,417,418,5,206,0,0,418,420,3,54,27,0,419,417, + 1,0,0,0,420,423,1,0,0,0,421,419,1,0,0,0,421,422,1,0,0,0,422,53,1, + 0,0,0,423,421,1,0,0,0,424,425,3,116,58,0,425,426,5,212,0,0,426,427, + 3,106,53,0,427,55,1,0,0,0,428,430,3,58,29,0,429,428,1,0,0,0,429, + 430,1,0,0,0,430,432,1,0,0,0,431,433,3,60,30,0,432,431,1,0,0,0,432, + 433,1,0,0,0,433,435,1,0,0,0,434,436,3,62,31,0,435,434,1,0,0,0,435, + 436,1,0,0,0,436,57,1,0,0,0,437,438,5,126,0,0,438,439,5,18,0,0,439, + 440,3,72,36,0,440,59,1,0,0,0,441,442,5,122,0,0,442,443,5,18,0,0, + 443,444,3,46,23,0,444,61,1,0,0,0,445,446,7,8,0,0,446,447,3,64,32, + 0,447,63,1,0,0,0,448,455,3,66,33,0,449,450,5,16,0,0,450,451,3,66, + 33,0,451,452,5,6,0,0,452,453,3,66,33,0,453,455,1,0,0,0,454,448,1, + 0,0,0,454,449,1,0,0,0,455,65,1,0,0,0,456,457,5,33,0,0,457,469,5, + 142,0,0,458,459,5,175,0,0,459,469,5,128,0,0,460,461,5,175,0,0,461, + 469,5,64,0,0,462,463,3,104,52,0,463,464,5,128,0,0,464,469,1,0,0, + 0,465,466,3,104,52,0,466,467,5,64,0,0,467,469,1,0,0,0,468,456,1, + 0,0,0,468,458,1,0,0,0,468,460,1,0,0,0,468,462,1,0,0,0,468,465,1, + 0,0,0,469,67,1,0,0,0,470,471,3,74,37,0,471,472,5,0,0,1,472,69,1, + 0,0,0,473,521,3,116,58,0,474,475,3,116,58,0,475,476,5,220,0,0,476, + 477,3,116,58,0,477,484,3,70,35,0,478,479,5,206,0,0,479,480,3,116, + 58,0,480,481,3,70,35,0,481,483,1,0,0,0,482,478,1,0,0,0,483,486,1, + 0,0,0,484,482,1,0,0,0,484,485,1,0,0,0,485,487,1,0,0,0,486,484,1, + 0,0,0,487,488,5,235,0,0,488,521,1,0,0,0,489,490,3,116,58,0,490,491, + 5,220,0,0,491,496,3,118,59,0,492,493,5,206,0,0,493,495,3,118,59, + 0,494,492,1,0,0,0,495,498,1,0,0,0,496,494,1,0,0,0,496,497,1,0,0, + 0,497,499,1,0,0,0,498,496,1,0,0,0,499,500,5,235,0,0,500,521,1,0, + 0,0,501,502,3,116,58,0,502,503,5,220,0,0,503,508,3,70,35,0,504,505, + 5,206,0,0,505,507,3,70,35,0,506,504,1,0,0,0,507,510,1,0,0,0,508, + 506,1,0,0,0,508,509,1,0,0,0,509,511,1,0,0,0,510,508,1,0,0,0,511, + 512,5,235,0,0,512,521,1,0,0,0,513,514,3,116,58,0,514,516,5,220,0, + 0,515,517,3,72,36,0,516,515,1,0,0,0,516,517,1,0,0,0,517,518,1,0, + 0,0,518,519,5,235,0,0,519,521,1,0,0,0,520,473,1,0,0,0,520,474,1, + 0,0,0,520,489,1,0,0,0,520,501,1,0,0,0,520,513,1,0,0,0,521,71,1,0, + 0,0,522,527,3,74,37,0,523,524,5,206,0,0,524,526,3,74,37,0,525,523, + 1,0,0,0,526,529,1,0,0,0,527,525,1,0,0,0,527,528,1,0,0,0,528,73,1, + 0,0,0,529,527,1,0,0,0,530,531,6,37,-1,0,531,533,5,19,0,0,532,534, + 3,74,37,0,533,532,1,0,0,0,533,534,1,0,0,0,534,540,1,0,0,0,535,536, + 5,186,0,0,536,537,3,74,37,0,537,538,5,163,0,0,538,539,3,74,37,0, + 539,541,1,0,0,0,540,535,1,0,0,0,541,542,1,0,0,0,542,540,1,0,0,0, + 542,543,1,0,0,0,543,546,1,0,0,0,544,545,5,52,0,0,545,547,3,74,37, + 0,546,544,1,0,0,0,546,547,1,0,0,0,547,548,1,0,0,0,548,549,5,53,0, + 0,549,660,1,0,0,0,550,551,5,20,0,0,551,552,5,220,0,0,552,553,3,74, + 37,0,553,554,5,10,0,0,554,555,3,70,35,0,555,556,5,235,0,0,556,660, + 1,0,0,0,557,558,5,36,0,0,558,660,5,199,0,0,559,560,5,59,0,0,560, + 561,5,220,0,0,561,562,3,108,54,0,562,563,5,68,0,0,563,564,3,74,37, + 0,564,565,5,235,0,0,565,660,1,0,0,0,566,567,5,86,0,0,567,568,3,74, + 37,0,568,569,3,108,54,0,569,660,1,0,0,0,570,571,5,155,0,0,571,572, + 5,220,0,0,572,573,3,74,37,0,573,574,5,68,0,0,574,577,3,74,37,0,575, + 576,5,65,0,0,576,578,3,74,37,0,577,575,1,0,0,0,577,578,1,0,0,0,578, + 579,1,0,0,0,579,580,5,235,0,0,580,660,1,0,0,0,581,582,5,166,0,0, + 582,660,5,199,0,0,583,584,5,171,0,0,584,585,5,220,0,0,585,586,7, + 9,0,0,586,587,5,199,0,0,587,588,5,68,0,0,588,589,3,74,37,0,589,590, + 5,235,0,0,590,660,1,0,0,0,591,592,3,116,58,0,592,594,5,220,0,0,593, + 595,3,72,36,0,594,593,1,0,0,0,594,595,1,0,0,0,595,596,1,0,0,0,596, + 597,5,235,0,0,597,598,1,0,0,0,598,599,5,125,0,0,599,600,5,220,0, + 0,600,601,3,56,28,0,601,602,5,235,0,0,602,660,1,0,0,0,603,604,3, + 116,58,0,604,606,5,220,0,0,605,607,3,72,36,0,606,605,1,0,0,0,606, + 607,1,0,0,0,607,608,1,0,0,0,608,609,5,235,0,0,609,610,1,0,0,0,610, + 611,5,125,0,0,611,612,3,116,58,0,612,660,1,0,0,0,613,619,3,116,58, + 0,614,616,5,220,0,0,615,617,3,72,36,0,616,615,1,0,0,0,616,617,1, + 0,0,0,617,618,1,0,0,0,618,620,5,235,0,0,619,614,1,0,0,0,619,620, + 1,0,0,0,620,621,1,0,0,0,621,623,5,220,0,0,622,624,5,49,0,0,623,622, + 1,0,0,0,623,624,1,0,0,0,624,626,1,0,0,0,625,627,3,76,38,0,626,625, + 1,0,0,0,626,627,1,0,0,0,627,628,1,0,0,0,628,629,5,235,0,0,629,660, + 1,0,0,0,630,660,3,106,53,0,631,632,5,208,0,0,632,660,3,74,37,17, + 633,634,5,115,0,0,634,660,3,74,37,12,635,636,3,94,47,0,636,637,5, + 210,0,0,637,639,1,0,0,0,638,635,1,0,0,0,638,639,1,0,0,0,639,640, + 1,0,0,0,640,660,5,202,0,0,641,642,5,220,0,0,642,643,3,2,1,0,643, + 644,5,235,0,0,644,660,1,0,0,0,645,646,5,220,0,0,646,647,3,74,37, + 0,647,648,5,235,0,0,648,660,1,0,0,0,649,650,5,220,0,0,650,651,3, + 72,36,0,651,652,5,235,0,0,652,660,1,0,0,0,653,655,5,219,0,0,654, + 656,3,72,36,0,655,654,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657, + 660,5,234,0,0,658,660,3,86,43,0,659,530,1,0,0,0,659,550,1,0,0,0, + 659,557,1,0,0,0,659,559,1,0,0,0,659,566,1,0,0,0,659,570,1,0,0,0, + 659,581,1,0,0,0,659,583,1,0,0,0,659,591,1,0,0,0,659,603,1,0,0,0, + 659,613,1,0,0,0,659,630,1,0,0,0,659,631,1,0,0,0,659,633,1,0,0,0, + 659,638,1,0,0,0,659,641,1,0,0,0,659,645,1,0,0,0,659,649,1,0,0,0, + 659,653,1,0,0,0,659,658,1,0,0,0,660,751,1,0,0,0,661,665,10,16,0, + 0,662,666,5,202,0,0,663,666,5,237,0,0,664,666,5,226,0,0,665,662, + 1,0,0,0,665,663,1,0,0,0,665,664,1,0,0,0,666,667,1,0,0,0,667,750, + 3,74,37,17,668,672,10,15,0,0,669,673,5,227,0,0,670,673,5,208,0,0, + 671,673,5,207,0,0,672,669,1,0,0,0,672,670,1,0,0,0,672,671,1,0,0, + 0,673,674,1,0,0,0,674,750,3,74,37,16,675,700,10,14,0,0,676,701,5, + 211,0,0,677,701,5,212,0,0,678,701,5,223,0,0,679,701,5,221,0,0,680, + 701,5,222,0,0,681,701,5,213,0,0,682,701,5,214,0,0,683,685,5,115, + 0,0,684,683,1,0,0,0,684,685,1,0,0,0,685,686,1,0,0,0,686,688,5,80, + 0,0,687,689,5,25,0,0,688,687,1,0,0,0,688,689,1,0,0,0,689,701,1,0, + 0,0,690,692,5,115,0,0,691,690,1,0,0,0,691,692,1,0,0,0,692,693,1, + 0,0,0,693,701,7,10,0,0,694,701,5,231,0,0,695,701,5,232,0,0,696,701, + 5,225,0,0,697,701,5,216,0,0,698,701,5,217,0,0,699,701,5,224,0,0, + 700,676,1,0,0,0,700,677,1,0,0,0,700,678,1,0,0,0,700,679,1,0,0,0, + 700,680,1,0,0,0,700,681,1,0,0,0,700,682,1,0,0,0,700,684,1,0,0,0, + 700,691,1,0,0,0,700,694,1,0,0,0,700,695,1,0,0,0,700,696,1,0,0,0, + 700,697,1,0,0,0,700,698,1,0,0,0,700,699,1,0,0,0,701,702,1,0,0,0, + 702,750,3,74,37,15,703,704,10,11,0,0,704,705,5,6,0,0,705,750,3,74, + 37,12,706,707,10,10,0,0,707,708,5,121,0,0,708,750,3,74,37,11,709, + 711,10,9,0,0,710,712,5,115,0,0,711,710,1,0,0,0,711,712,1,0,0,0,712, + 713,1,0,0,0,713,714,5,16,0,0,714,715,3,74,37,0,715,716,5,6,0,0,716, + 717,3,74,37,10,717,750,1,0,0,0,718,719,10,8,0,0,719,720,5,228,0, + 0,720,721,3,74,37,0,721,722,5,205,0,0,722,723,3,74,37,8,723,750, + 1,0,0,0,724,725,10,20,0,0,725,726,5,219,0,0,726,727,3,74,37,0,727, + 728,5,234,0,0,728,750,1,0,0,0,729,730,10,19,0,0,730,731,5,210,0, + 0,731,750,5,197,0,0,732,733,10,18,0,0,733,734,5,210,0,0,734,750, + 3,116,58,0,735,736,10,13,0,0,736,738,5,88,0,0,737,739,5,115,0,0, + 738,737,1,0,0,0,738,739,1,0,0,0,739,740,1,0,0,0,740,750,5,116,0, + 0,741,747,10,7,0,0,742,748,3,114,57,0,743,744,5,10,0,0,744,748,3, + 116,58,0,745,746,5,10,0,0,746,748,5,199,0,0,747,742,1,0,0,0,747, + 743,1,0,0,0,747,745,1,0,0,0,748,750,1,0,0,0,749,661,1,0,0,0,749, + 668,1,0,0,0,749,675,1,0,0,0,749,703,1,0,0,0,749,706,1,0,0,0,749, + 709,1,0,0,0,749,718,1,0,0,0,749,724,1,0,0,0,749,729,1,0,0,0,749, + 732,1,0,0,0,749,735,1,0,0,0,749,741,1,0,0,0,750,753,1,0,0,0,751, + 749,1,0,0,0,751,752,1,0,0,0,752,75,1,0,0,0,753,751,1,0,0,0,754,759, + 3,78,39,0,755,756,5,206,0,0,756,758,3,78,39,0,757,755,1,0,0,0,758, + 761,1,0,0,0,759,757,1,0,0,0,759,760,1,0,0,0,760,77,1,0,0,0,761,759, + 1,0,0,0,762,765,3,80,40,0,763,765,3,74,37,0,764,762,1,0,0,0,764, + 763,1,0,0,0,765,79,1,0,0,0,766,767,5,220,0,0,767,772,3,116,58,0, + 768,769,5,206,0,0,769,771,3,116,58,0,770,768,1,0,0,0,771,774,1,0, + 0,0,772,770,1,0,0,0,772,773,1,0,0,0,773,775,1,0,0,0,774,772,1,0, + 0,0,775,776,5,235,0,0,776,786,1,0,0,0,777,782,3,116,58,0,778,779, + 5,206,0,0,779,781,3,116,58,0,780,778,1,0,0,0,781,784,1,0,0,0,782, + 780,1,0,0,0,782,783,1,0,0,0,783,786,1,0,0,0,784,782,1,0,0,0,785, + 766,1,0,0,0,785,777,1,0,0,0,786,787,1,0,0,0,787,788,5,201,0,0,788, + 789,3,74,37,0,789,81,1,0,0,0,790,795,3,84,42,0,791,792,5,206,0,0, + 792,794,3,84,42,0,793,791,1,0,0,0,794,797,1,0,0,0,795,793,1,0,0, + 0,795,796,1,0,0,0,796,83,1,0,0,0,797,795,1,0,0,0,798,799,3,116,58, + 0,799,800,5,10,0,0,800,801,5,220,0,0,801,802,3,2,1,0,802,803,5,235, + 0,0,803,809,1,0,0,0,804,805,3,74,37,0,805,806,5,10,0,0,806,807,3, + 116,58,0,807,809,1,0,0,0,808,798,1,0,0,0,808,804,1,0,0,0,809,85, + 1,0,0,0,810,818,5,200,0,0,811,812,3,94,47,0,812,813,5,210,0,0,813, + 815,1,0,0,0,814,811,1,0,0,0,814,815,1,0,0,0,815,816,1,0,0,0,816, + 818,3,88,44,0,817,810,1,0,0,0,817,814,1,0,0,0,818,87,1,0,0,0,819, + 824,3,116,58,0,820,821,5,210,0,0,821,823,3,116,58,0,822,820,1,0, + 0,0,823,826,1,0,0,0,824,822,1,0,0,0,824,825,1,0,0,0,825,89,1,0,0, + 0,826,824,1,0,0,0,827,828,6,45,-1,0,828,835,3,94,47,0,829,835,3, + 92,46,0,830,831,5,220,0,0,831,832,3,2,1,0,832,833,5,235,0,0,833, + 835,1,0,0,0,834,827,1,0,0,0,834,829,1,0,0,0,834,830,1,0,0,0,835, + 844,1,0,0,0,836,840,10,1,0,0,837,841,3,114,57,0,838,839,5,10,0,0, + 839,841,3,116,58,0,840,837,1,0,0,0,840,838,1,0,0,0,841,843,1,0,0, + 0,842,836,1,0,0,0,843,846,1,0,0,0,844,842,1,0,0,0,844,845,1,0,0, + 0,845,91,1,0,0,0,846,844,1,0,0,0,847,848,3,116,58,0,848,850,5,220, + 0,0,849,851,3,96,48,0,850,849,1,0,0,0,850,851,1,0,0,0,851,852,1, + 0,0,0,852,853,5,235,0,0,853,93,1,0,0,0,854,855,3,100,50,0,855,856, + 5,210,0,0,856,858,1,0,0,0,857,854,1,0,0,0,857,858,1,0,0,0,858,859, + 1,0,0,0,859,860,3,116,58,0,860,95,1,0,0,0,861,866,3,98,49,0,862, + 863,5,206,0,0,863,865,3,98,49,0,864,862,1,0,0,0,865,868,1,0,0,0, + 866,864,1,0,0,0,866,867,1,0,0,0,867,97,1,0,0,0,868,866,1,0,0,0,869, + 873,3,88,44,0,870,873,3,92,46,0,871,873,3,106,53,0,872,869,1,0,0, + 0,872,870,1,0,0,0,872,871,1,0,0,0,873,99,1,0,0,0,874,875,3,116,58, + 0,875,101,1,0,0,0,876,885,5,195,0,0,877,878,5,210,0,0,878,885,7, + 11,0,0,879,880,5,197,0,0,880,882,5,210,0,0,881,883,7,11,0,0,882, + 881,1,0,0,0,882,883,1,0,0,0,883,885,1,0,0,0,884,876,1,0,0,0,884, + 877,1,0,0,0,884,879,1,0,0,0,885,103,1,0,0,0,886,888,7,12,0,0,887, + 886,1,0,0,0,887,888,1,0,0,0,888,895,1,0,0,0,889,896,3,102,51,0,890, + 896,5,196,0,0,891,896,5,197,0,0,892,896,5,198,0,0,893,896,5,82,0, + 0,894,896,5,113,0,0,895,889,1,0,0,0,895,890,1,0,0,0,895,891,1,0, + 0,0,895,892,1,0,0,0,895,893,1,0,0,0,895,894,1,0,0,0,896,105,1,0, + 0,0,897,901,3,104,52,0,898,901,5,199,0,0,899,901,5,116,0,0,900,897, + 1,0,0,0,900,898,1,0,0,0,900,899,1,0,0,0,901,107,1,0,0,0,902,903, + 7,13,0,0,903,109,1,0,0,0,904,905,7,14,0,0,905,111,1,0,0,0,906,907, + 7,15,0,0,907,113,1,0,0,0,908,911,5,194,0,0,909,911,3,112,56,0,910, + 908,1,0,0,0,910,909,1,0,0,0,911,115,1,0,0,0,912,916,5,194,0,0,913, + 916,3,108,54,0,914,916,3,110,55,0,915,912,1,0,0,0,915,913,1,0,0, + 0,915,914,1,0,0,0,916,117,1,0,0,0,917,918,5,199,0,0,918,919,5,212, + 0,0,919,920,3,104,52,0,920,119,1,0,0,0,115,122,132,140,143,147,150, + 154,157,160,163,166,170,174,177,180,183,187,190,199,205,226,243, + 260,266,272,283,285,296,299,305,313,319,321,325,330,333,336,340, + 344,347,349,352,356,360,363,365,367,372,383,389,396,401,405,409, + 414,421,429,432,435,454,468,484,496,508,516,520,527,533,542,546, + 577,594,606,616,619,623,626,638,655,659,665,672,684,688,691,700, + 711,738,747,749,751,759,764,772,782,785,795,808,814,817,824,834, + 840,844,850,857,866,872,882,884,887,895,900,910,915 ] class HogQLParser ( Parser ): @@ -434,9 +437,10 @@ class HogQLParser ( Parser ): "", "", "", "", "'->'", "'*'", "'`'", "'\\'", "':'", "','", "'||'", "'-'", "'$'", "'.'", "'=='", "'='", "'>='", "'>'", - "'#'", "'{'", "'['", "'('", "'<='", "'<'", "", - "'%'", "'+'", "'?'", "'\"'", "'''", "'}'", "']'", "')'", - "';'", "'/'", "'_'" ] + "'#'", "'~*'", "'=~*'", "'{'", "'['", "'('", "'<='", + "'<'", "", "'!~*'", "'!~'", "'%'", "'+'", + "'?'", "'\"'", "'''", "'~'", "'=~'", "'}'", "']'", + "')'", "';'", "'/'", "'_'" ] symbolicNames = [ "", "ADD", "AFTER", "ALIAS", "ALL", "ALTER", "AND", "ANTI", "ANY", "ARRAY", "AS", "ASCENDING", @@ -477,11 +481,13 @@ class HogQLParser ( Parser ): "DECIMAL_LITERAL", "HEXADECIMAL_LITERAL", "STRING_LITERAL", "PLACEHOLDER", "ARROW", "ASTERISK", "BACKQUOTE", "BACKSLASH", "COLON", "COMMA", "CONCAT", "DASH", "DOLLAR", "DOT", - "EQ_DOUBLE", "EQ_SINGLE", "GT_EQ", "GT", "HASH", "LBRACE", - "LBRACKET", "LPAREN", "LT_EQ", "LT", "NOT_EQ", "PERCENT", - "PLUS", "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", "RBRACE", - "RBRACKET", "RPAREN", "SEMICOLON", "SLASH", "UNDERSCORE", - "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", "WHITESPACE" ] + "EQ_DOUBLE", "EQ_SINGLE", "GT_EQ", "GT", "HASH", "IREGEX_SINGLE", + "IREGEX_DOUBLE", "LBRACE", "LBRACKET", "LPAREN", "LT_EQ", + "LT", "NOT_EQ", "NOT_IREGEX", "NOT_REGEX", "PERCENT", + "PLUS", "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", "REGEX_SINGLE", + "REGEX_DOUBLE", "RBRACE", "RBRACKET", "RPAREN", "SEMICOLON", + "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", + "WHITESPACE" ] RULE_select = 0 RULE_selectUnionStmt = 1 @@ -779,26 +785,32 @@ class HogQLParser ( Parser ): GT_EQ=213 GT=214 HASH=215 - LBRACE=216 - LBRACKET=217 - LPAREN=218 - LT_EQ=219 - LT=220 - NOT_EQ=221 - PERCENT=222 - PLUS=223 - QUERY=224 - QUOTE_DOUBLE=225 - QUOTE_SINGLE=226 - RBRACE=227 - RBRACKET=228 - RPAREN=229 - SEMICOLON=230 - SLASH=231 - UNDERSCORE=232 - MULTI_LINE_COMMENT=233 - SINGLE_LINE_COMMENT=234 - WHITESPACE=235 + IREGEX_SINGLE=216 + IREGEX_DOUBLE=217 + LBRACE=218 + LBRACKET=219 + LPAREN=220 + LT_EQ=221 + LT=222 + NOT_EQ=223 + NOT_IREGEX=224 + NOT_REGEX=225 + PERCENT=226 + PLUS=227 + QUERY=228 + QUOTE_DOUBLE=229 + QUOTE_SINGLE=230 + REGEX_SINGLE=231 + REGEX_DOUBLE=232 + RBRACE=233 + RBRACKET=234 + RPAREN=235 + SEMICOLON=236 + SLASH=237 + UNDERSCORE=238 + MULTI_LINE_COMMENT=239 + SINGLE_LINE_COMMENT=240 + WHITESPACE=241 def __init__(self, input:TokenStream, output:TextIO = sys.stdout): super().__init__(input, output) @@ -986,7 +998,7 @@ def selectStmtWithParens(self): self.state = 135 self.selectStmt() pass - elif token in [218]: + elif token in [220]: self.enterOuterAlt(localctx, 2) self.state = 136 self.match(HogQLParser.LPAREN) @@ -1242,7 +1254,7 @@ def selectStmt(self): self.state = 186 self.offsetOnlyClause() pass - elif token in [-1, 150, 176, 229]: + elif token in [-1, 150, 176, 235]: pass else: pass @@ -2000,7 +2012,7 @@ def limitAndOffsetClause(self): self.state = 265 self.columnExprList() pass - elif token in [-1, 150, 176, 229]: + elif token in [-1, 150, 176, 235]: pass else: pass @@ -3500,7 +3512,7 @@ def winFrameExtend(self): self.state = 454 self._errHandler.sync(self) token = self._input.LA(1) - if token in [33, 82, 113, 175, 195, 196, 197, 198, 208, 210, 223]: + if token in [33, 82, 113, 175, 195, 196, 197, 198, 208, 210, 227]: localctx = HogQLParser.FrameStartContext(self, localctx) self.enterOuterAlt(localctx, 1) self.state = 448 @@ -3930,7 +3942,7 @@ def columnTypeExpr(self): self.state = 516 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 34762720765) != 0): self.state = 515 self.columnExprList() @@ -4357,6 +4369,18 @@ def LIKE(self): return self.getToken(HogQLParser.LIKE, 0) def ILIKE(self): return self.getToken(HogQLParser.ILIKE, 0) + def REGEX_SINGLE(self): + return self.getToken(HogQLParser.REGEX_SINGLE, 0) + def REGEX_DOUBLE(self): + return self.getToken(HogQLParser.REGEX_DOUBLE, 0) + def NOT_REGEX(self): + return self.getToken(HogQLParser.NOT_REGEX, 0) + def IREGEX_SINGLE(self): + return self.getToken(HogQLParser.IREGEX_SINGLE, 0) + def IREGEX_DOUBLE(self): + return self.getToken(HogQLParser.IREGEX_DOUBLE, 0) + def NOT_IREGEX(self): + return self.getToken(HogQLParser.NOT_IREGEX, 0) def COHORT(self): return self.getToken(HogQLParser.COHORT, 0) def NOT(self): @@ -5030,7 +5054,7 @@ def columnExpr(self, _p:int=0): self.state = 594 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 34762720765) != 0): self.state = 593 self.columnExprList() @@ -5059,7 +5083,7 @@ def columnExpr(self, _p:int=0): self.state = 606 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 34762720765) != 0): self.state = 605 self.columnExprList() @@ -5087,7 +5111,7 @@ def columnExpr(self, _p:int=0): self.state = 616 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 34762720765) != 0): self.state = 615 self.columnExprList() @@ -5109,7 +5133,7 @@ def columnExpr(self, _p:int=0): self.state = 626 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 34762720765) != 0): self.state = 625 self.columnArgList() @@ -5209,7 +5233,7 @@ def columnExpr(self, _p:int=0): self.state = 655 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2248476157) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 34762720765) != 0): self.state = 654 self.columnExprList() @@ -5228,7 +5252,7 @@ def columnExpr(self, _p:int=0): self._ctx.stop = self._input.LT(-1) - self.state = 745 + self.state = 751 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,90,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: @@ -5236,7 +5260,7 @@ def columnExpr(self, _p:int=0): if self._parseListeners is not None: self.triggerExitRuleEvent() _prevctx = localctx - self.state = 743 + self.state = 749 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,89,self._ctx) if la_ == 1: @@ -5254,11 +5278,11 @@ def columnExpr(self, _p:int=0): self.state = 662 localctx.operator = self.match(HogQLParser.ASTERISK) pass - elif token in [231]: + elif token in [237]: self.state = 663 localctx.operator = self.match(HogQLParser.SLASH) pass - elif token in [222]: + elif token in [226]: self.state = 664 localctx.operator = self.match(HogQLParser.PERCENT) pass @@ -5280,7 +5304,7 @@ def columnExpr(self, _p:int=0): self.state = 672 self._errHandler.sync(self) token = self._input.LA(1) - if token in [223]: + if token in [227]: self.state = 669 localctx.operator = self.match(HogQLParser.PLUS) pass @@ -5307,7 +5331,7 @@ def columnExpr(self, _p:int=0): if not self.precpred(self._ctx, 14): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 14)") - self.state = 694 + self.state = 700 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,85,self._ctx) if la_ == 1: @@ -5384,167 +5408,197 @@ def columnExpr(self, _p:int=0): self.consume() pass + elif la_ == 10: + self.state = 694 + localctx.operator = self.match(HogQLParser.REGEX_SINGLE) + pass + + elif la_ == 11: + self.state = 695 + localctx.operator = self.match(HogQLParser.REGEX_DOUBLE) + pass + + elif la_ == 12: + self.state = 696 + localctx.operator = self.match(HogQLParser.NOT_REGEX) + pass + + elif la_ == 13: + self.state = 697 + localctx.operator = self.match(HogQLParser.IREGEX_SINGLE) + pass + + elif la_ == 14: + self.state = 698 + localctx.operator = self.match(HogQLParser.IREGEX_DOUBLE) + pass + + elif la_ == 15: + self.state = 699 + localctx.operator = self.match(HogQLParser.NOT_IREGEX) + pass + - self.state = 696 + self.state = 702 localctx.right = self.columnExpr(15) pass elif la_ == 4: localctx = HogQLParser.ColumnExprAndContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 697 + self.state = 703 if not self.precpred(self._ctx, 11): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 11)") - self.state = 698 + self.state = 704 self.match(HogQLParser.AND) - self.state = 699 + self.state = 705 self.columnExpr(12) pass elif la_ == 5: localctx = HogQLParser.ColumnExprOrContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 700 + self.state = 706 if not self.precpred(self._ctx, 10): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 10)") - self.state = 701 + self.state = 707 self.match(HogQLParser.OR) - self.state = 702 + self.state = 708 self.columnExpr(11) pass elif la_ == 6: localctx = HogQLParser.ColumnExprBetweenContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 703 + self.state = 709 if not self.precpred(self._ctx, 9): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 9)") - self.state = 705 + self.state = 711 self._errHandler.sync(self) _la = self._input.LA(1) if _la==115: - self.state = 704 + self.state = 710 self.match(HogQLParser.NOT) - self.state = 707 + self.state = 713 self.match(HogQLParser.BETWEEN) - self.state = 708 + self.state = 714 self.columnExpr(0) - self.state = 709 + self.state = 715 self.match(HogQLParser.AND) - self.state = 710 + self.state = 716 self.columnExpr(10) pass elif la_ == 7: localctx = HogQLParser.ColumnExprTernaryOpContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 712 + self.state = 718 if not self.precpred(self._ctx, 8): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 8)") - self.state = 713 + self.state = 719 self.match(HogQLParser.QUERY) - self.state = 714 + self.state = 720 self.columnExpr(0) - self.state = 715 + self.state = 721 self.match(HogQLParser.COLON) - self.state = 716 + self.state = 722 self.columnExpr(8) pass elif la_ == 8: localctx = HogQLParser.ColumnExprArrayAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 718 + self.state = 724 if not self.precpred(self._ctx, 20): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 20)") - self.state = 719 + self.state = 725 self.match(HogQLParser.LBRACKET) - self.state = 720 + self.state = 726 self.columnExpr(0) - self.state = 721 + self.state = 727 self.match(HogQLParser.RBRACKET) pass elif la_ == 9: localctx = HogQLParser.ColumnExprTupleAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 723 + self.state = 729 if not self.precpred(self._ctx, 19): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 19)") - self.state = 724 + self.state = 730 self.match(HogQLParser.DOT) - self.state = 725 + self.state = 731 self.match(HogQLParser.DECIMAL_LITERAL) pass elif la_ == 10: localctx = HogQLParser.ColumnExprPropertyAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 726 + self.state = 732 if not self.precpred(self._ctx, 18): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 18)") - self.state = 727 + self.state = 733 self.match(HogQLParser.DOT) - self.state = 728 + self.state = 734 self.identifier() pass elif la_ == 11: localctx = HogQLParser.ColumnExprIsNullContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 729 + self.state = 735 if not self.precpred(self._ctx, 13): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 13)") - self.state = 730 + self.state = 736 self.match(HogQLParser.IS) - self.state = 732 + self.state = 738 self._errHandler.sync(self) _la = self._input.LA(1) if _la==115: - self.state = 731 + self.state = 737 self.match(HogQLParser.NOT) - self.state = 734 + self.state = 740 self.match(HogQLParser.NULL_SQL) pass elif la_ == 12: localctx = HogQLParser.ColumnExprAliasContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 735 + self.state = 741 if not self.precpred(self._ctx, 7): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 7)") - self.state = 741 + self.state = 747 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,88,self._ctx) if la_ == 1: - self.state = 736 + self.state = 742 self.alias() pass elif la_ == 2: - self.state = 737 + self.state = 743 self.match(HogQLParser.AS) - self.state = 738 + self.state = 744 self.identifier() pass elif la_ == 3: - self.state = 739 + self.state = 745 self.match(HogQLParser.AS) - self.state = 740 + self.state = 746 self.match(HogQLParser.STRING_LITERAL) pass @@ -5552,7 +5606,7 @@ def columnExpr(self, _p:int=0): pass - self.state = 747 + self.state = 753 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,90,self._ctx) @@ -5604,17 +5658,17 @@ def columnArgList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 748 + self.state = 754 self.columnArgExpr() - self.state = 753 + self.state = 759 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 749 + self.state = 755 self.match(HogQLParser.COMMA) - self.state = 750 + self.state = 756 self.columnArgExpr() - self.state = 755 + self.state = 761 self._errHandler.sync(self) _la = self._input.LA(1) @@ -5659,18 +5713,18 @@ def columnArgExpr(self): localctx = HogQLParser.ColumnArgExprContext(self, self._ctx, self.state) self.enterRule(localctx, 78, self.RULE_columnArgExpr) try: - self.state = 758 + self.state = 764 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,92,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 756 + self.state = 762 self.columnLambdaExpr() pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 757 + self.state = 763 self.columnExpr(0) pass @@ -5736,41 +5790,41 @@ def columnLambdaExpr(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 779 + self.state = 785 self._errHandler.sync(self) token = self._input.LA(1) - if token in [218]: - self.state = 760 + if token in [220]: + self.state = 766 self.match(HogQLParser.LPAREN) - self.state = 761 + self.state = 767 self.identifier() - self.state = 766 + self.state = 772 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 762 + self.state = 768 self.match(HogQLParser.COMMA) - self.state = 763 + self.state = 769 self.identifier() - self.state = 768 + self.state = 774 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 769 + self.state = 775 self.match(HogQLParser.RPAREN) pass elif token in [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 194]: - self.state = 771 + self.state = 777 self.identifier() - self.state = 776 + self.state = 782 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 772 + self.state = 778 self.match(HogQLParser.COMMA) - self.state = 773 + self.state = 779 self.identifier() - self.state = 778 + self.state = 784 self._errHandler.sync(self) _la = self._input.LA(1) @@ -5778,9 +5832,9 @@ def columnLambdaExpr(self): else: raise NoViableAltException(self) - self.state = 781 + self.state = 787 self.match(HogQLParser.ARROW) - self.state = 782 + self.state = 788 self.columnExpr(0) except RecognitionException as re: localctx.exception = re @@ -5830,17 +5884,17 @@ def withExprList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 784 + self.state = 790 self.withExpr() - self.state = 789 + self.state = 795 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 785 + self.state = 791 self.match(HogQLParser.COMMA) - self.state = 786 + self.state = 792 self.withExpr() - self.state = 791 + self.state = 797 self._errHandler.sync(self) _la = self._input.LA(1) @@ -5924,32 +5978,32 @@ def withExpr(self): localctx = HogQLParser.WithExprContext(self, self._ctx, self.state) self.enterRule(localctx, 84, self.RULE_withExpr) try: - self.state = 802 + self.state = 808 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,97,self._ctx) if la_ == 1: localctx = HogQLParser.WithExprSubqueryContext(self, localctx) self.enterOuterAlt(localctx, 1) - self.state = 792 + self.state = 798 self.identifier() - self.state = 793 + self.state = 799 self.match(HogQLParser.AS) - self.state = 794 + self.state = 800 self.match(HogQLParser.LPAREN) - self.state = 795 + self.state = 801 self.selectUnionStmt() - self.state = 796 + self.state = 802 self.match(HogQLParser.RPAREN) pass elif la_ == 2: localctx = HogQLParser.WithExprColumnContext(self, localctx) self.enterOuterAlt(localctx, 2) - self.state = 798 + self.state = 804 self.columnExpr(0) - self.state = 799 + self.state = 805 self.match(HogQLParser.AS) - self.state = 800 + self.state = 806 self.identifier() pass @@ -6001,27 +6055,27 @@ def columnIdentifier(self): localctx = HogQLParser.ColumnIdentifierContext(self, self._ctx, self.state) self.enterRule(localctx, 86, self.RULE_columnIdentifier) try: - self.state = 811 + self.state = 817 self._errHandler.sync(self) token = self._input.LA(1) if token in [200]: self.enterOuterAlt(localctx, 1) - self.state = 804 + self.state = 810 self.match(HogQLParser.PLACEHOLDER) pass elif token in [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 194]: self.enterOuterAlt(localctx, 2) - self.state = 808 + self.state = 814 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,98,self._ctx) if la_ == 1: - self.state = 805 + self.state = 811 self.tableIdentifier() - self.state = 806 + self.state = 812 self.match(HogQLParser.DOT) - self.state = 810 + self.state = 816 self.nestedIdentifier() pass else: @@ -6074,18 +6128,18 @@ def nestedIdentifier(self): self.enterRule(localctx, 88, self.RULE_nestedIdentifier) try: self.enterOuterAlt(localctx, 1) - self.state = 813 + self.state = 819 self.identifier() - self.state = 818 + self.state = 824 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,100,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 814 + self.state = 820 self.match(HogQLParser.DOT) - self.state = 815 + self.state = 821 self.identifier() - self.state = 820 + self.state = 826 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,100,self._ctx) @@ -6204,7 +6258,7 @@ def tableExpr(self, _p:int=0): self.enterRecursionRule(localctx, 90, self.RULE_tableExpr, _p) try: self.enterOuterAlt(localctx, 1) - self.state = 828 + self.state = 834 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,101,self._ctx) if la_ == 1: @@ -6212,7 +6266,7 @@ def tableExpr(self, _p:int=0): self._ctx = localctx _prevctx = localctx - self.state = 822 + self.state = 828 self.tableIdentifier() pass @@ -6220,7 +6274,7 @@ def tableExpr(self, _p:int=0): localctx = HogQLParser.TableExprFunctionContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 823 + self.state = 829 self.tableFunctionExpr() pass @@ -6228,17 +6282,17 @@ def tableExpr(self, _p:int=0): localctx = HogQLParser.TableExprSubqueryContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 824 + self.state = 830 self.match(HogQLParser.LPAREN) - self.state = 825 + self.state = 831 self.selectUnionStmt() - self.state = 826 + self.state = 832 self.match(HogQLParser.RPAREN) pass self._ctx.stop = self._input.LT(-1) - self.state = 838 + self.state = 844 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,103,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: @@ -6248,27 +6302,27 @@ def tableExpr(self, _p:int=0): _prevctx = localctx localctx = HogQLParser.TableExprAliasContext(self, HogQLParser.TableExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_tableExpr) - self.state = 830 + self.state = 836 if not self.precpred(self._ctx, 1): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 1)") - self.state = 834 + self.state = 840 self._errHandler.sync(self) token = self._input.LA(1) if token in [36, 62, 77, 91, 194]: - self.state = 831 + self.state = 837 self.alias() pass elif token in [10]: - self.state = 832 + self.state = 838 self.match(HogQLParser.AS) - self.state = 833 + self.state = 839 self.identifier() pass else: raise NoViableAltException(self) - self.state = 840 + self.state = 846 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,103,self._ctx) @@ -6321,19 +6375,19 @@ def tableFunctionExpr(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 841 + self.state = 847 self.identifier() - self.state = 842 + self.state = 848 self.match(HogQLParser.LPAREN) - self.state = 844 + self.state = 850 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 2147811581) != 0): - self.state = 843 + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 34360066301) != 0): + self.state = 849 self.tableArgList() - self.state = 846 + self.state = 852 self.match(HogQLParser.RPAREN) except RecognitionException as re: localctx.exception = re @@ -6380,17 +6434,17 @@ def tableIdentifier(self): self.enterRule(localctx, 94, self.RULE_tableIdentifier) try: self.enterOuterAlt(localctx, 1) - self.state = 851 + self.state = 857 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,105,self._ctx) if la_ == 1: - self.state = 848 + self.state = 854 self.databaseIdentifier() - self.state = 849 + self.state = 855 self.match(HogQLParser.DOT) - self.state = 853 + self.state = 859 self.identifier() except RecognitionException as re: localctx.exception = re @@ -6440,17 +6494,17 @@ def tableArgList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 855 + self.state = 861 self.tableArgExpr() - self.state = 860 + self.state = 866 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 856 + self.state = 862 self.match(HogQLParser.COMMA) - self.state = 857 + self.state = 863 self.tableArgExpr() - self.state = 862 + self.state = 868 self._errHandler.sync(self) _la = self._input.LA(1) @@ -6499,24 +6553,24 @@ def tableArgExpr(self): localctx = HogQLParser.TableArgExprContext(self, self._ctx, self.state) self.enterRule(localctx, 98, self.RULE_tableArgExpr) try: - self.state = 866 + self.state = 872 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,107,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 863 + self.state = 869 self.nestedIdentifier() pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 864 + self.state = 870 self.tableFunctionExpr() pass elif la_ == 3: self.enterOuterAlt(localctx, 3) - self.state = 865 + self.state = 871 self.literal() pass @@ -6559,7 +6613,7 @@ def databaseIdentifier(self): self.enterRule(localctx, 100, self.RULE_databaseIdentifier) try: self.enterOuterAlt(localctx, 1) - self.state = 868 + self.state = 874 self.identifier() except RecognitionException as re: localctx.exception = re @@ -6610,19 +6664,19 @@ def floatingLiteral(self): self.enterRule(localctx, 102, self.RULE_floatingLiteral) self._la = 0 # Token type try: - self.state = 878 + self.state = 884 self._errHandler.sync(self) token = self._input.LA(1) if token in [195]: self.enterOuterAlt(localctx, 1) - self.state = 870 + self.state = 876 self.match(HogQLParser.FLOATING_LITERAL) pass elif token in [210]: self.enterOuterAlt(localctx, 2) - self.state = 871 + self.state = 877 self.match(HogQLParser.DOT) - self.state = 872 + self.state = 878 _la = self._input.LA(1) if not(_la==196 or _la==197): self._errHandler.recoverInline(self) @@ -6632,15 +6686,15 @@ def floatingLiteral(self): pass elif token in [197]: self.enterOuterAlt(localctx, 3) - self.state = 873 + self.state = 879 self.match(HogQLParser.DECIMAL_LITERAL) - self.state = 874 + self.state = 880 self.match(HogQLParser.DOT) - self.state = 876 + self.state = 882 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,108,self._ctx) if la_ == 1: - self.state = 875 + self.state = 881 _la = self._input.LA(1) if not(_la==196 or _la==197): self._errHandler.recoverInline(self) @@ -6713,49 +6767,49 @@ def numberLiteral(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 881 + self.state = 887 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==208 or _la==223: - self.state = 880 + if _la==208 or _la==227: + self.state = 886 _la = self._input.LA(1) - if not(_la==208 or _la==223): + if not(_la==208 or _la==227): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) self.consume() - self.state = 889 + self.state = 895 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,111,self._ctx) if la_ == 1: - self.state = 883 + self.state = 889 self.floatingLiteral() pass elif la_ == 2: - self.state = 884 + self.state = 890 self.match(HogQLParser.OCTAL_LITERAL) pass elif la_ == 3: - self.state = 885 + self.state = 891 self.match(HogQLParser.DECIMAL_LITERAL) pass elif la_ == 4: - self.state = 886 + self.state = 892 self.match(HogQLParser.HEXADECIMAL_LITERAL) pass elif la_ == 5: - self.state = 887 + self.state = 893 self.match(HogQLParser.INF) pass elif la_ == 6: - self.state = 888 + self.state = 894 self.match(HogQLParser.NAN_SQL) pass @@ -6803,22 +6857,22 @@ def literal(self): localctx = HogQLParser.LiteralContext(self, self._ctx, self.state) self.enterRule(localctx, 106, self.RULE_literal) try: - self.state = 894 + self.state = 900 self._errHandler.sync(self) token = self._input.LA(1) - if token in [82, 113, 195, 196, 197, 198, 208, 210, 223]: + if token in [82, 113, 195, 196, 197, 198, 208, 210, 227]: self.enterOuterAlt(localctx, 1) - self.state = 891 + self.state = 897 self.numberLiteral() pass elif token in [199]: self.enterOuterAlt(localctx, 2) - self.state = 892 + self.state = 898 self.match(HogQLParser.STRING_LITERAL) pass elif token in [116]: self.enterOuterAlt(localctx, 3) - self.state = 893 + self.state = 899 self.match(HogQLParser.NULL_SQL) pass else: @@ -6883,7 +6937,7 @@ def interval(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 896 + self.state = 902 _la = self._input.LA(1) if not(_la==37 or ((((_la - 76)) & ~0x3f) == 0 and ((1 << (_la - 76)) & 72057615512764417) != 0) or ((((_la - 145)) & ~0x3f) == 0 and ((1 << (_la - 145)) & 36283883716609) != 0)): self._errHandler.recoverInline(self) @@ -7459,7 +7513,7 @@ def keyword(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 898 + self.state = 904 _la = self._input.LA(1) if not(((((_la - 2)) & ~0x3f) == 0 and ((1 << (_la - 2)) & -34368126977) != 0) or ((((_la - 66)) & ~0x3f) == 0 and ((1 << (_la - 66)) & -1288627627820033) != 0) or ((((_la - 130)) & ~0x3f) == 0 and ((1 << (_la - 130)) & 8034421735228932089) != 0)): self._errHandler.recoverInline(self) @@ -7513,7 +7567,7 @@ def keywordForAlias(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 900 + self.state = 906 _la = self._input.LA(1) if not(((((_la - 36)) & ~0x3f) == 0 and ((1 << (_la - 36)) & 36030996109328385) != 0)): self._errHandler.recoverInline(self) @@ -7560,17 +7614,17 @@ def alias(self): localctx = HogQLParser.AliasContext(self, self._ctx, self.state) self.enterRule(localctx, 114, self.RULE_alias) try: - self.state = 904 + self.state = 910 self._errHandler.sync(self) token = self._input.LA(1) if token in [194]: self.enterOuterAlt(localctx, 1) - self.state = 902 + self.state = 908 self.match(HogQLParser.IDENTIFIER) pass elif token in [36, 62, 77, 91]: self.enterOuterAlt(localctx, 2) - self.state = 903 + self.state = 909 self.keywordForAlias() pass else: @@ -7620,22 +7674,22 @@ def identifier(self): localctx = HogQLParser.IdentifierContext(self, self._ctx, self.state) self.enterRule(localctx, 116, self.RULE_identifier) try: - self.state = 909 + self.state = 915 self._errHandler.sync(self) token = self._input.LA(1) if token in [194]: self.enterOuterAlt(localctx, 1) - self.state = 906 + self.state = 912 self.match(HogQLParser.IDENTIFIER) pass elif token in [37, 76, 108, 110, 132, 145, 185, 190]: self.enterOuterAlt(localctx, 2) - self.state = 907 + self.state = 913 self.interval() pass elif token in [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 186, 187, 188, 189, 191, 192]: self.enterOuterAlt(localctx, 3) - self.state = 908 + self.state = 914 self.keyword() pass else: @@ -7685,11 +7739,11 @@ def enumValue(self): self.enterRule(localctx, 118, self.RULE_enumValue) try: self.enterOuterAlt(localctx, 1) - self.state = 911 + self.state = 917 self.match(HogQLParser.STRING_LITERAL) - self.state = 912 + self.state = 918 self.match(HogQLParser.EQ_SINGLE) - self.state = 913 + self.state = 919 self.numberLiteral() except RecognitionException as re: localctx.exception = re diff --git a/posthog/hogql/grammar/HogQLParser.tokens b/posthog/hogql/grammar/HogQLParser.tokens index a8a2b718a1a0b..7380f362ead3a 100644 --- a/posthog/hogql/grammar/HogQLParser.tokens +++ b/posthog/hogql/grammar/HogQLParser.tokens @@ -213,26 +213,32 @@ EQ_SINGLE=212 GT_EQ=213 GT=214 HASH=215 -LBRACE=216 -LBRACKET=217 -LPAREN=218 -LT_EQ=219 -LT=220 -NOT_EQ=221 -PERCENT=222 -PLUS=223 -QUERY=224 -QUOTE_DOUBLE=225 -QUOTE_SINGLE=226 -RBRACE=227 -RBRACKET=228 -RPAREN=229 -SEMICOLON=230 -SLASH=231 -UNDERSCORE=232 -MULTI_LINE_COMMENT=233 -SINGLE_LINE_COMMENT=234 -WHITESPACE=235 +IREGEX_SINGLE=216 +IREGEX_DOUBLE=217 +LBRACE=218 +LBRACKET=219 +LPAREN=220 +LT_EQ=221 +LT=222 +NOT_EQ=223 +NOT_IREGEX=224 +NOT_REGEX=225 +PERCENT=226 +PLUS=227 +QUERY=228 +QUOTE_DOUBLE=229 +QUOTE_SINGLE=230 +REGEX_SINGLE=231 +REGEX_DOUBLE=232 +RBRACE=233 +RBRACKET=234 +RPAREN=235 +SEMICOLON=236 +SLASH=237 +UNDERSCORE=238 +MULTI_LINE_COMMENT=239 +SINGLE_LINE_COMMENT=240 +WHITESPACE=241 'false'=191 'true'=192 '->'=201 @@ -250,19 +256,25 @@ WHITESPACE=235 '>='=213 '>'=214 '#'=215 -'{'=216 -'['=217 -'('=218 -'<='=219 -'<'=220 -'%'=222 -'+'=223 -'?'=224 -'"'=225 -'\''=226 -'}'=227 -']'=228 -')'=229 -';'=230 -'/'=231 -'_'=232 +'~*'=216 +'=~*'=217 +'{'=218 +'['=219 +'('=220 +'<='=221 +'<'=222 +'!~*'=224 +'!~'=225 +'%'=226 +'+'=227 +'?'=228 +'"'=229 +'\''=230 +'~'=231 +'=~'=232 +'}'=233 +']'=234 +')'=235 +';'=236 +'/'=237 +'_'=238 diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index e13b595b72327..0a665d5c90559 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -477,6 +477,14 @@ def visitColumnExprPrecedence3(self, ctx: HogQLParser.ColumnExprPrecedence3Conte op = ast.CompareOperationOp.NotILike else: op = ast.CompareOperationOp.ILike + elif ctx.REGEX_SINGLE() or ctx.REGEX_DOUBLE(): + op = ast.CompareOperationOp.Regex + elif ctx.NOT_REGEX(): + op = ast.CompareOperationOp.NotRegex + elif ctx.IREGEX_SINGLE() or ctx.IREGEX_DOUBLE(): + op = ast.CompareOperationOp.IRegex + elif ctx.NOT_IREGEX(): + op = ast.CompareOperationOp.NotIRegex elif ctx.IN(): if ctx.COHORT(): right = ast.Call(name="cohort", args=[right]) diff --git a/posthog/hogql/printer.py b/posthog/hogql/printer.py index 0c52e6b61d2c8..5588666e22838 100644 --- a/posthog/hogql/printer.py +++ b/posthog/hogql/printer.py @@ -396,10 +396,10 @@ def visit_compare_operation(self, node: ast.CompareOperation): return f"lessOrEquals({left}, {right})" elif node.op == ast.CompareOperationOp.Like: return f"like({left}, {right})" - elif node.op == ast.CompareOperationOp.ILike: - return f"ilike({left}, {right})" elif node.op == ast.CompareOperationOp.NotLike: return f"notLike({left}, {right})" + elif node.op == ast.CompareOperationOp.ILike: + return f"ilike({left}, {right})" elif node.op == ast.CompareOperationOp.NotILike: return f"notILike({left}, {right})" elif node.op == ast.CompareOperationOp.In: @@ -410,6 +410,10 @@ def visit_compare_operation(self, node: ast.CompareOperation): return f"match({left}, {right})" elif node.op == ast.CompareOperationOp.NotRegex: return f"not(match({left}, {right}))" + elif node.op == ast.CompareOperationOp.IRegex: + return f"match({left}, concat('(?i)', {right}))" + elif node.op == ast.CompareOperationOp.NotIRegex: + return f"not(match({left}, concat('(?i)', {right})))" else: raise HogQLException(f"Unknown CompareOperationOp: {type(node.op).__name__}") diff --git a/posthog/hogql/test/test_printer.py b/posthog/hogql/test/test_printer.py index 5fbed9c410db5..30d7e122f35e1 100644 --- a/posthog/hogql/test/test_printer.py +++ b/posthog/hogql/test/test_printer.py @@ -307,6 +307,14 @@ def test_comparisons(self): self.assertEqual(self._expr("event not ilike 'E'", context), "notILike(events.event, %(hogql_val_9)s)") self.assertEqual(self._expr("event in 'E'", context), "in(events.event, %(hogql_val_10)s)") self.assertEqual(self._expr("event not in 'E'", context), "notIn(events.event, %(hogql_val_11)s)") + self.assertEqual(self._expr("event ~ 'E'", context), "match(events.event, %(hogql_val_12)s)") + self.assertEqual(self._expr("event =~ 'E'", context), "match(events.event, %(hogql_val_13)s)") + self.assertEqual(self._expr("event !~ 'E'", context), "not(match(events.event, %(hogql_val_14)s))") + self.assertEqual(self._expr("event ~* 'E'", context), "match(events.event, concat('(?i)', %(hogql_val_15)s))") + self.assertEqual(self._expr("event =~* 'E'", context), "match(events.event, concat('(?i)', %(hogql_val_16)s))") + self.assertEqual( + self._expr("event !~* 'E'", context), "not(match(events.event, concat('(?i)', %(hogql_val_17)s)))" + ) def test_comments(self): context = HogQLContext(team_id=self.team.pk) From 97407359be0c5e584985b3c839ede78cee4984c4 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Tue, 27 Jun 2023 23:32:12 +0200 Subject: [PATCH 06/13] test regex operators --- posthog/hogql/test/test_query.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/posthog/hogql/test/test_query.py b/posthog/hogql/test/test_query.py index a7bb953c01c1d..6980402a04784 100644 --- a/posthog/hogql/test/test_query.py +++ b/posthog/hogql/test/test_query.py @@ -1143,3 +1143,28 @@ def test_null_equality(self): query = f"select a {op} {b} from (select {a} as a)" response = execute_hogql_query(query, team=self.team) self.assertEqual(response.results, [(res,)], query) + + def test_regex_functions(self): + query = """ + SELECT + 'kala' ~ '.*', + 'kala' =~ '.*', + 'kala' !~ '.*', + 'kala' =~ 'a', + 'kala' !~ 'a', + 'kala' =~ 'A', + 'kala' !~ 'A', + 'kala' ~* 'A', + 'kala' =~* 'A', + 'kala' !~* 'A' + """ + + response = execute_hogql_query( + query, + team=self.team, + ) + + self.assertEqual( + response.results, + [(True, True, False, True, False, False, True, True, True, False)], + ) From 1ba687f22ba51e52c45fc6a72b111933083dc21f Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Tue, 27 Jun 2023 23:56:33 +0200 Subject: [PATCH 07/13] cohort only works with "in cohort" --- posthog/hogql/ast.py | 2 ++ posthog/hogql/parser.py | 13 ++++++++----- posthog/hogql/resolver.py | 20 +++++++++++++++++--- posthog/hogql/test/test_property.py | 2 ++ 4 files changed, 29 insertions(+), 8 deletions(-) diff --git a/posthog/hogql/ast.py b/posthog/hogql/ast.py index 3fc8cb6fb8925..62f3fe0ccba57 100644 --- a/posthog/hogql/ast.py +++ b/posthog/hogql/ast.py @@ -343,6 +343,8 @@ class CompareOperationOp(str, Enum): NotILike = "not ilike" In = "in" NotIn = "not in" + InCohort = "in cohort" + NotInCohort = "not in cohort" Regex = "=~" IRegex = "=~*" NotRegex = "!~" diff --git a/posthog/hogql/parser.py b/posthog/hogql/parser.py index 0a665d5c90559..64fcd946c0b18 100644 --- a/posthog/hogql/parser.py +++ b/posthog/hogql/parser.py @@ -487,12 +487,15 @@ def visitColumnExprPrecedence3(self, ctx: HogQLParser.ColumnExprPrecedence3Conte op = ast.CompareOperationOp.NotIRegex elif ctx.IN(): if ctx.COHORT(): - right = ast.Call(name="cohort", args=[right]) - - if ctx.NOT(): - op = ast.CompareOperationOp.NotIn + if ctx.NOT(): + op = ast.CompareOperationOp.NotInCohort + else: + op = ast.CompareOperationOp.InCohort else: - op = ast.CompareOperationOp.In + if ctx.NOT(): + op = ast.CompareOperationOp.NotIn + else: + op = ast.CompareOperationOp.In else: raise NotImplementedException(f"Unsupported ColumnExprPrecedence3: {ctx.getText()}") diff --git a/posthog/hogql/resolver.py b/posthog/hogql/resolver.py index bbb0528c436f3..ffde0bff210ef 100644 --- a/posthog/hogql/resolver.py +++ b/posthog/hogql/resolver.py @@ -281,9 +281,6 @@ def visit_call(self, node: ast.Call): if node.name == "sparkline": return self.visit(sparkline(node=node, args=node.args)) - elif node.name == "cohort": - return self.visit(cohort(node=node, args=node.args, context=self.context)) - node = super().visit_call(node) arg_types: List[ast.ConstantType] = [] for arg in node.args: @@ -443,6 +440,23 @@ def visit_not(self, node: ast.Not): return node def visit_compare_operation(self, node: ast.CompareOperation): + if node.op == ast.CompareOperationOp.InCohort: + return self.visit( + ast.CompareOperation( + op=ast.CompareOperationOp.In, + left=node.left, + right=cohort(node=node.right, args=[node.right], context=self.context), + ) + ) + elif node.op == ast.CompareOperationOp.NotInCohort: + return self.visit( + ast.CompareOperation( + op=ast.CompareOperationOp.NotIn, + left=node.left, + right=cohort(node=node.right, args=[node.right], context=self.context), + ) + ) + node = super().visit_compare_operation(node) node.type = ast.BooleanType() return node diff --git a/posthog/hogql/test/test_property.py b/posthog/hogql/test/test_property.py index 1e1f5363caf4f..49c1eece7e0bf 100644 --- a/posthog/hogql/test/test_property.py +++ b/posthog/hogql/test/test_property.py @@ -23,6 +23,8 @@ class TestProperty(BaseTest): + maxDiff = None + def _property_to_expr(self, property: Union[PropertyGroup, Property, dict, list], team: Optional[Team] = None): return clear_locations(property_to_expr(property, team=team or self.team)) From 1ed0309ee03750847cd2701563f0b675cc6d0d77 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Wed, 28 Jun 2023 00:00:44 +0200 Subject: [PATCH 08/13] capture database snapshot changes --- .github/workflows/ci-backend.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-backend.yml b/.github/workflows/ci-backend.yml index 5e6d0c03608fb..8170eb7817f99 100644 --- a/.github/workflows/ci-backend.yml +++ b/.github/workflows/ci-backend.yml @@ -277,7 +277,7 @@ jobs: # Also skip for persons-on-events runs, as we want to ignore snapshots diverging there if: ${{ github.repository == 'PostHog/posthog' && needs.changes.outputs.backend == 'true' && !matrix.person-on-events }} with: - add: '["ee", "posthog/clickhouse/test/__snapshots__", "posthog/api/test/__snapshots__", "posthog/test/__snapshots__", "posthog/queries/", "posthog/migrations", "posthog/tasks"]' + add: '["ee", "posthog/clickhouse/test/__snapshots__", "posthog/api/test/__snapshots__", "posthog/test/__snapshots__", "posthog/queries/", "posthog/migrations", "posthog/tasks", "posthog/hogql/"]' message: 'Update query snapshots' pull: --rebase --autostash # Make sure we're up to date with other segments' updates default_author: github_actions From b3947d719320bf98ee208744cd0d0dd8bfae6e30 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Wed, 28 Jun 2023 00:25:35 +0200 Subject: [PATCH 09/13] feat(hogql): hogvm --- .dockerignore | 1 + .github/actions/run-backend-tests/action.yml | 2 +- .github/workflows/ci-e2e.yml | 1 + .gitignore | 2 + hogvm/CHANGELOG.md | 49 + hogvm/README.md | 89 + hogvm/python/execute.py | 137 + hogvm/python/operation.py | 39 + hogvm/python/test/test_execute.py | 103 + hogvm/typescript/.prettierrc | 7 + hogvm/typescript/jest.config.js | 10 + hogvm/typescript/package.json | 38 + hogvm/typescript/pnpm-lock.yaml | 5154 +++++++++++++++++ .../typescript/src/__tests__/bytecode.test.ts | 93 + hogvm/typescript/src/bytecode.ts | 217 + hogvm/typescript/tsconfig.build.json | 4 + hogvm/typescript/tsconfig.json | 24 + posthog/hogql/bytecode.py | 107 + posthog/hogql/test/test_bytecode.py | 60 + 19 files changed, 6136 insertions(+), 1 deletion(-) create mode 100644 hogvm/CHANGELOG.md create mode 100644 hogvm/README.md create mode 100644 hogvm/python/execute.py create mode 100644 hogvm/python/operation.py create mode 100644 hogvm/python/test/test_execute.py create mode 100644 hogvm/typescript/.prettierrc create mode 100644 hogvm/typescript/jest.config.js create mode 100644 hogvm/typescript/package.json create mode 100644 hogvm/typescript/pnpm-lock.yaml create mode 100644 hogvm/typescript/src/__tests__/bytecode.test.ts create mode 100644 hogvm/typescript/src/bytecode.ts create mode 100644 hogvm/typescript/tsconfig.build.json create mode 100644 hogvm/typescript/tsconfig.json create mode 100644 posthog/hogql/bytecode.py create mode 100644 posthog/hogql/test/test_bytecode.py diff --git a/.dockerignore b/.dockerignore index d90df609c1b55..4448c2a7d88d1 100644 --- a/.dockerignore +++ b/.dockerignore @@ -32,3 +32,4 @@ !plugin-server/.eslintrc.js !plugin-server/.prettierrc !share/GeoLite2-City.mmdb +!hogvm/python diff --git a/.github/actions/run-backend-tests/action.yml b/.github/actions/run-backend-tests/action.yml index 5d247196a3ca6..8cca4c439774c 100644 --- a/.github/actions/run-backend-tests/action.yml +++ b/.github/actions/run-backend-tests/action.yml @@ -104,7 +104,7 @@ runs: GROUPS_ON_EVENTS_ENABLED: ${{ inputs.person-on-events }} shell: bash run: | # async_migrations are covered in ci-async-migrations.yml - pytest posthog -m "not async_migrations" \ + pytest hogvm posthog -m "not async_migrations" \ --splits ${{ inputs.concurrency }} --group ${{ inputs.group }} \ --durations=100 --durations-min=1.0 --store-durations \ $PYTEST_ARGS diff --git a/.github/workflows/ci-e2e.yml b/.github/workflows/ci-e2e.yml index 4f0dd181e1405..5cb6e834b534a 100644 --- a/.github/workflows/ci-e2e.yml +++ b/.github/workflows/ci-e2e.yml @@ -34,6 +34,7 @@ jobs: # code completely - 'ee/**/*' - 'posthog/**/*' + - 'hogvm/**/*' - 'bin/*.py' - requirements.txt - requirements-dev.txt diff --git a/.gitignore b/.gitignore index 9370e7ed3363f..936371c2c8df7 100644 --- a/.gitignore +++ b/.gitignore @@ -51,3 +51,5 @@ playwright/e2e-vrt/**/*-darwin.png # antlr4 generated temp files when "npm run grammar:build" crashes gen upgrade/ +hogvm/typescript/dist + diff --git a/hogvm/CHANGELOG.md b/hogvm/CHANGELOG.md new file mode 100644 index 0000000000000..0c03cd6b79bf3 --- /dev/null +++ b/hogvm/CHANGELOG.md @@ -0,0 +1,49 @@ +# HogQL bytecode changelog + +## 2023-06-27 - First version + +### Operations added + +```bash +FIELD = 1 # [arg3, arg2, arg1, FIELD, 3] # arg1.arg2.arg3 +CALL = 2 # [arg2, arg1, CALL, 'concat', 2] # concat(arg1, arg2) +AND = 3 # [val3, val2, val1, AND, 3] # val1 and val2 and val3 +OR = 4 # [val3, val2, val1, OR, 3] # val1 or val2 or val3 +NOT = 5 # [val, NOT] # not val +PLUS = 6 # [val2, val1, PLUS] # val1 + val2 +MINUS = 7 # [val2, val1, MINUS] # val1 - val2 +MULTIPLY = 8 # [val2, val1, MULTIPLY] # val1 * val2 +DIVIDE = 9 # [val2, val1, DIVIDE] # val1 / val2 +MOD = 10 # [val2, val1, MOD] # val1 % val2 +EQ = 11 # [val2, val1, EQ] # val1 == val2 +NOT_EQ = 12 # [val2, val1, NOT_EQ] # val1 != val2 +GT = 13 # [val2, val1, GT] # val1 > val2 +GT_EQ = 14 # [val2, val1, GT_EQ] # val1 >= val2 +LT = 15 # [val2, val1, LT] # val1 < val2 +LT_EQ = 16 # [val2, val1, LT_EQ] # val1 <= val2 +LIKE = 17 # [val2, val1, LIKE] # val1 like val2 +ILIKE = 18 # [val2, val1, ILIKE] # val1 ilike val2 +NOT_LIKE = 19 # [val2, val1, NOT_LIKE] # val1 not like val2 +NOT_ILIKE = 20 # [val2, val1, NOT_ILIKE] # val1 not ilike val2 +IN = 21 # [val2, val1, IN] # val1 in val2 +NOT_IN = 22 # [val2, val1, NOT_IN] # val1 not in val2 +REGEX = 23 # [val2, val1, REGEX] # val1 =~ val2 +NOT_REGEX = 24 # [val2, val1, NOT_REGEX] # val1 !~ val2 +TRUE = 25 # [TRUE] # true +FALSE = 26 # [FALSE] # false +NULL = 27 # [NULL] # null +STRING = 28 # [STRING, 'text'] # 'text' +INTEGER = 29 # [INTEGER, 123] # 123 +FLOAT = 30 # [FLOAT, 123.12] # 123.01 +``` + +### Functions added + +```bash +concat(...) # concat('test: ', 1, null, '!') == 'test: 1!' +match(string, pattern) # match('fish', '$fi.*') == true +toString(val) # toString(true) == 'true' +toInt(val) # toInt('123') == 123 +toFloat(val) # toFloat('123.2') == 123.2 +toUUID(val) # toUUID('string') == 'string' +``` diff --git a/hogvm/README.md b/hogvm/README.md new file mode 100644 index 0000000000000..78f70b5736f4a --- /dev/null +++ b/hogvm/README.md @@ -0,0 +1,89 @@ +# HogVM + +A HogVM is a 🦔 that runs HogQL bytecode. It's purpose is to locally evaluate HogQL expressions against any object. + +## HogQL bytecode + +HogQL Bytecode is a compact representation of a subset of the HogQL AST nodes. It follows a certain structure: + +``` +1 + 2 # [_H, op.INTEGER, 2, op.INTEGER, 1, op.PLUS] +1 and 2 # [_H, op.INTEGER, 2, op.INTEGER, 1, op.AND, 2] +1 or 2 # [_H, op.INTEGER, 2, op.INTEGER, 1, op.OR, 2] +not true # [_H, op.TRUE, op.NOT] +properties.bla # [_H, op.STRING, "bla", op.STRING, "properties", op.FIELD, 2] +call('arg', 'another') # [_H, op.STRING, "another", op.STRING, "arg", op.CALL, "call", 2] +1 = 2 # [_H, op.INTEGER, 2, op.INTEGER, 1, op.EQ] +'bla' !~ 'a' # [_H, op.STRING, 'a', op.STRING, 'bla', op.NOT_REGEX] +``` + +## Compliant implementation + +The `python/execute.py` function in this folder acts as the reference implementation in case of disputes. + +### Operations + +To be considered a PostHog HogQL Bytecode Certified Parser, you must implement the following operations: + +```bash +FIELD = 1 # [arg3, arg2, arg1, FIELD, 3] # arg1.arg2.arg3 +CALL = 2 # [arg2, arg1, CALL, 'concat', 2] # concat(arg1, arg2) +AND = 3 # [val3, val2, val1, AND, 3] # val1 and val2 and val3 +OR = 4 # [val3, val2, val1, OR, 3] # val1 or val2 or val3 +NOT = 5 # [val, NOT] # not val +PLUS = 6 # [val2, val1, PLUS] # val1 + val2 +MINUS = 7 # [val2, val1, MINUS] # val1 - val2 +MULTIPLY = 8 # [val2, val1, MULTIPLY] # val1 * val2 +DIVIDE = 9 # [val2, val1, DIVIDE] # val1 / val2 +MOD = 10 # [val2, val1, MOD] # val1 % val2 +EQ = 11 # [val2, val1, EQ] # val1 == val2 +NOT_EQ = 12 # [val2, val1, NOT_EQ] # val1 != val2 +GT = 13 # [val2, val1, GT] # val1 > val2 +GT_EQ = 14 # [val2, val1, GT_EQ] # val1 >= val2 +LT = 15 # [val2, val1, LT] # val1 < val2 +LT_EQ = 16 # [val2, val1, LT_EQ] # val1 <= val2 +LIKE = 17 # [val2, val1, LIKE] # val1 like val2 +ILIKE = 18 # [val2, val1, ILIKE] # val1 ilike val2 +NOT_LIKE = 19 # [val2, val1, NOT_LIKE] # val1 not like val2 +NOT_ILIKE = 20 # [val2, val1, NOT_ILIKE] # val1 not ilike val2 +IN = 21 # [val2, val1, IN] # val1 in val2 +NOT_IN = 22 # [val2, val1, NOT_IN] # val1 not in val2 +REGEX = 23 # [val2, val1, REGEX] # val1 =~ val2 +NOT_REGEX = 24 # [val2, val1, NOT_REGEX] # val1 !~ val2 +TRUE = 25 # [TRUE] # true +FALSE = 26 # [FALSE] # false +NULL = 27 # [NULL] # null +STRING = 28 # [STRING, 'text'] # 'text' +INTEGER = 29 # [INTEGER, 123] # 123 +FLOAT = 30 # [FLOAT, 123.12] # 123.01 +``` + +### Functions + +You must also implement the following function calls: + +```bash +concat(...) # concat('test: ', 1, null, '!') == 'test: 1!' +match(string, pattern) # match('fish', '$fi.*') == true +toString(val) # toString(true) == 'true' +toInt(val) # toInt('123') == 123 +toFloat(val) # toFloat('123.2') == 123.2 +toUUID(val) # toUUID('string') == 'string' +``` + +### Null handling + +In HogQL equality comparisons, `null` is treated as any other variable. Its presence will not make functions automatically return `null`, as is the ClickHouse default. + +```sql +1 == null # false +1 != null # true +``` + +Nulls are just ignored in `concat` + +## Known broken features + +- **Regular Expression** support is implemented, but NOT GUARANTEED to the same way across platforms. Different implementations (ClickHouse, Python, Node) use different Regexp engines. ClickHouse uses `re2`, the others use `pcre`. +- **DateTime** comparisons are not supported. +- Only a small subset of functions is enabled. This list is bound to expand. diff --git a/hogvm/python/execute.py b/hogvm/python/execute.py new file mode 100644 index 0000000000000..be795f4a5469c --- /dev/null +++ b/hogvm/python/execute.py @@ -0,0 +1,137 @@ +import re +from typing import List, Any, Dict + +from hogvm.python.operation import Operation, HOGQL_BYTECODE_IDENTIFIER + + +class HogVMException(Exception): + pass + + +def like(string, pattern, flags=0): + pattern = re.escape(pattern).replace("%", ".*") + re_pattern = re.compile(pattern, flags) + return re_pattern.search(string) is not None + + +def get_nested_value(obj, chain) -> Any: + for key in chain: + if isinstance(key, int): + obj = obj[key] + else: + obj = obj.get(key, None) + return obj + + +def to_concat_arg(arg) -> str: + if arg is None: + return "" + if arg is True: + return "true" + if arg is False: + return "false" + return str(arg) + + +def execute_bytecode(bytecode: List[Any], fields: Dict[str, Any]) -> Any: + try: + stack = [] + iterator = iter(bytecode) + if next(iterator) != HOGQL_BYTECODE_IDENTIFIER: + raise HogVMException(f"Invalid bytecode. Must start with '{HOGQL_BYTECODE_IDENTIFIER}'") + + while (symbol := next(iterator, None)) is not None: + match symbol: + case Operation.STRING: + stack.append(next(iterator)) + case Operation.INTEGER: + stack.append(next(iterator)) + case Operation.FLOAT: + stack.append(next(iterator)) + case Operation.TRUE: + stack.append(True) + case Operation.FALSE: + stack.append(False) + case Operation.NULL: + stack.append(None) + case Operation.NOT: + stack.append(not stack.pop()) + case Operation.AND: + stack.append(all([stack.pop() for _ in range(next(iterator))])) + case Operation.OR: + stack.append(any([stack.pop() for _ in range(next(iterator))])) + case Operation.PLUS: + stack.append(stack.pop() + stack.pop()) + case Operation.MINUS: + stack.append(stack.pop() - stack.pop()) + case Operation.DIVIDE: + stack.append(stack.pop() / stack.pop()) + case Operation.MULTIPLY: + stack.append(stack.pop() * stack.pop()) + case Operation.MOD: + stack.append(stack.pop() % stack.pop()) + case Operation.EQ: + stack.append(stack.pop() == stack.pop()) + case Operation.NOT_EQ: + stack.append(stack.pop() != stack.pop()) + case Operation.GT: + stack.append(stack.pop() > stack.pop()) + case Operation.GT_EQ: + stack.append(stack.pop() >= stack.pop()) + case Operation.LT: + stack.append(stack.pop() < stack.pop()) + case Operation.LT_EQ: + stack.append(stack.pop() <= stack.pop()) + case Operation.LIKE: + stack.append(like(stack.pop(), stack.pop())) + case Operation.ILIKE: + stack.append(like(stack.pop(), stack.pop(), re.IGNORECASE)) + case Operation.NOT_LIKE: + stack.append(not like(stack.pop(), stack.pop())) + case Operation.NOT_ILIKE: + stack.append(not like(stack.pop(), stack.pop(), re.IGNORECASE)) + case Operation.IN: + stack.append(stack.pop() in stack.pop()) + case Operation.NOT_IN: + stack.append(stack.pop() not in stack.pop()) + case Operation.REGEX: + args = [stack.pop(), stack.pop()] + stack.append(bool(re.search(re.compile(args[1]), args[0]))) + case Operation.NOT_REGEX: + args = [stack.pop(), stack.pop()] + stack.append(not bool(re.search(re.compile(args[1]), args[0]))) + case Operation.FIELD: + chain = [stack.pop() for _ in range(next(iterator))] + stack.append(get_nested_value(fields, chain)) + case Operation.CALL: + name = next(iterator) + args = [stack.pop() for _ in range(next(iterator))] + if name == "concat": + stack.append("".join([to_concat_arg(arg) for arg in args])) + elif name == "match": + stack.append(bool(re.search(re.compile(args[1]), args[0]))) + elif name == "toString" or name == "toUUID": + if args[0] is True: + stack.append("true") + elif args[0] is False: + stack.append("false") + elif args[0] is None: + stack.append("null") + else: + stack.append(str(args[0])) + elif name == "toInt" or name == "toFloat": + try: + stack.append(int(args[0]) if name == "toInt" else float(args[0])) + except ValueError: + stack.append(None) + else: + raise HogVMException(f"Unsupported function call: {name}") + case _: + raise HogVMException(f"Unexpected node while running bytecode: {symbol}") + + if len(stack) > 1: + raise HogVMException("Invalid bytecode. More than one value left on stack") + + return stack.pop() + except IndexError: + raise HogVMException("Unexpected end of bytecode") diff --git a/hogvm/python/operation.py b/hogvm/python/operation.py new file mode 100644 index 0000000000000..a22d6621118bd --- /dev/null +++ b/hogvm/python/operation.py @@ -0,0 +1,39 @@ +from enum import Enum + +HOGQL_BYTECODE_IDENTIFIER = "_h" + + +SUPPORTED_FUNCTIONS = ("concat", "match", "toString", "toInt", "toFloat", "toUUID") + + +class Operation(str, Enum): + FIELD = 1 + CALL = 2 + AND = 3 + OR = 4 + NOT = 5 + PLUS = 6 + MINUS = 7 + MULTIPLY = 8 + DIVIDE = 9 + MOD = 10 + EQ = 11 + NOT_EQ = 12 + GT = 13 + GT_EQ = 14 + LT = 15 + LT_EQ = 16 + LIKE = 17 + ILIKE = 18 + NOT_LIKE = 19 + NOT_ILIKE = 20 + IN = 21 + NOT_IN = 22 + REGEX = 23 + NOT_REGEX = 24 + TRUE = 25 + FALSE = 26 + NULL = 27 + STRING = 28 + INTEGER = 29 + FLOAT = 30 diff --git a/hogvm/python/test/test_execute.py b/hogvm/python/test/test_execute.py new file mode 100644 index 0000000000000..38e4fa51add05 --- /dev/null +++ b/hogvm/python/test/test_execute.py @@ -0,0 +1,103 @@ +from typing import Any + +from hogvm.python.execute import execute_bytecode, get_nested_value +from hogvm.python.operation import Operation as op, HOGQL_BYTECODE_IDENTIFIER as _H +from posthog.hogql.bytecode import create_bytecode +from posthog.hogql.parser import parse_expr +from posthog.test.base import BaseTest + + +class TestBytecodeExecute(BaseTest): + def _run(self, expr: str) -> Any: + fields = { + "properties": {"foo": "bar"}, + } + return execute_bytecode(create_bytecode(parse_expr(expr)), fields) + + def test_bytecode_create(self): + self.assertEqual(self._run("1 + 2"), 3) + self.assertEqual(self._run("1 - 2"), -1) + self.assertEqual(self._run("3 * 2"), 6) + self.assertEqual(self._run("3 / 2"), 1.5) + self.assertEqual(self._run("3 % 2"), 1) + self.assertEqual(self._run("1 and 2"), True) + self.assertEqual(self._run("1 or 0"), True) + self.assertEqual(self._run("1 and 0"), False) + self.assertEqual(self._run("1 or (0 and 1) or 2"), True) + self.assertEqual(self._run("(1 and 0) and 1"), False) + self.assertEqual(self._run("(1 or 2) and (1 or 2)"), True) + self.assertEqual(self._run("true"), True) + self.assertEqual(self._run("not true"), False) + self.assertEqual(self._run("false"), False) + self.assertEqual(self._run("null"), None) + self.assertEqual(self._run("3.14"), 3.14) + self.assertEqual(self._run("1 = 2"), False) + self.assertEqual(self._run("1 == 2"), False) + self.assertEqual(self._run("1 != 2"), True) + self.assertEqual(self._run("1 < 2"), True) + self.assertEqual(self._run("1 <= 2"), True) + self.assertEqual(self._run("1 > 2"), False) + self.assertEqual(self._run("1 >= 2"), False) + self.assertEqual(self._run("'a' like 'b'"), False) + self.assertEqual(self._run("'baa' like '%a%'"), True) + self.assertEqual(self._run("'baa' like '%x%'"), False) + self.assertEqual(self._run("'baa' ilike '%A%'"), True) + self.assertEqual(self._run("'baa' ilike '%C%'"), False) + self.assertEqual(self._run("'a' ilike 'b'"), False) + self.assertEqual(self._run("'a' not like 'b'"), True) + self.assertEqual(self._run("'a' not ilike 'b'"), True) + self.assertEqual(self._run("'a' in 'car'"), True) + self.assertEqual(self._run("'a' in 'foo'"), False) + self.assertEqual(self._run("'a' not in 'car'"), False) + self.assertEqual(self._run("properties.bla"), None) + self.assertEqual(self._run("properties.foo"), "bar") + self.assertEqual(self._run("concat('arg', 'another')"), "arganother") + self.assertEqual(self._run("concat(1, NULL)"), "1") + self.assertEqual(self._run("concat(true, false)"), "truefalse") + self.assertEqual(self._run("match('test', 'e.*')"), True) + self.assertEqual(self._run("match('test', '^e.*')"), False) + self.assertEqual(self._run("match('test', 'x.*')"), False) + self.assertEqual(self._run("'test' =~ 'e.*'"), True) + self.assertEqual(self._run("'test' !~ 'e.*'"), False) + self.assertEqual(self._run("'test' =~ '^e.*'"), False) + self.assertEqual(self._run("'test' !~ '^e.*'"), True) + self.assertEqual(self._run("'test' =~ 'x.*'"), False) + self.assertEqual(self._run("'test' !~ 'x.*'"), True) + self.assertEqual(self._run("toString(1)"), "1") + self.assertEqual(self._run("toString(1.5)"), "1.5") + self.assertEqual(self._run("toString(true)"), "true") + self.assertEqual(self._run("toString(null)"), "null") + self.assertEqual(self._run("toString('string')"), "string") + self.assertEqual(self._run("toInt('1')"), 1) + self.assertEqual(self._run("toInt('bla')"), None) + self.assertEqual(self._run("toFloat('1.2')"), 1.2) + self.assertEqual(self._run("toFloat('bla')"), None) + self.assertEqual(self._run("toUUID('asd')"), "asd") + self.assertEqual(self._run("1 == null"), False) + self.assertEqual(self._run("1 != null"), True) + + def test_nested_value(self): + my_dict = { + "properties": {"bla": "hello", "list": ["item1", "item2", "item3"], "tuple": ("item1", "item2", "item3")} + } + chain = ["properties", "bla"] + self.assertEqual(get_nested_value(my_dict, chain), "hello") + + chain = ["properties", "list", 1] + self.assertEqual(get_nested_value(my_dict, chain), "item2") + + chain = ["properties", "tuple", 2] + self.assertEqual(get_nested_value(my_dict, chain), "item3") + + def test_errors(self): + with self.assertRaises(Exception) as e: + execute_bytecode([_H, op.TRUE, op.CALL, "notAFunction", 1], {}) + self.assertEqual(str(e.exception), "Unsupported function call: notAFunction") + + with self.assertRaises(Exception) as e: + execute_bytecode([_H, op.CALL, "notAFunction", 1], {}) + self.assertEqual(str(e.exception), "Unexpected end of bytecode") + + with self.assertRaises(Exception) as e: + execute_bytecode([_H, op.TRUE, op.TRUE, op.NOT], {}) + self.assertEqual(str(e.exception), "Invalid bytecode. More than one value left on stack") diff --git a/hogvm/typescript/.prettierrc b/hogvm/typescript/.prettierrc new file mode 100644 index 0000000000000..11d8d0021d487 --- /dev/null +++ b/hogvm/typescript/.prettierrc @@ -0,0 +1,7 @@ +{ + "trailingComma": "es5", + "tabWidth": 4, + "semi": false, + "singleQuote": true, + "printWidth": 120, +} diff --git a/hogvm/typescript/jest.config.js b/hogvm/typescript/jest.config.js new file mode 100644 index 0000000000000..d0904700bd566 --- /dev/null +++ b/hogvm/typescript/jest.config.js @@ -0,0 +1,10 @@ +module.exports = { + transform: { + '^.+\\.(t|j)s$': ['@swc/jest'], + }, + testEnvironment: 'node', + clearMocks: true, + coverageProvider: 'v8', + testMatch: ['/**/*.test.ts'], + testTimeout: 60000, +} diff --git a/hogvm/typescript/package.json b/hogvm/typescript/package.json new file mode 100644 index 0000000000000..09090b737b752 --- /dev/null +++ b/hogvm/typescript/package.json @@ -0,0 +1,38 @@ +{ + "name": "@posthog/hogvm", + "version": "1.0.0", + "description": "PostHog HogQL Virtual Machine", + "types": "dist/bytecode.d.ts", + "main": "dist/bytecode.js", + "packageManager": "pnpm@8.3.1", + "scripts": { + "test": "jest --runInBand --forceExit", + "build": "pnpm clean && pnpm compile", + "clean": "rm -rf dist/*", + "compile": "tsc -p tsconfig.build.json", + "check": "tsc -p tsconfig.build.json --noEmit", + "prettier": "prettier --write src", + "prettier:check": "prettier --check src", + "prepublishOnly": "pnpm build" + }, + "author": "PostHog ", + "repository": "https://github.com/PostHog/posthog-plugin-server", + "license": "MIT", + "dependencies": {}, + "devDependencies": { + "@swc-node/register": "^1.5.1", + "@swc/core": "^1.2.186", + "@swc/jest": "^0.2.21", + "jest": "^28.1.1", + "prettier": "^2.8.8", + "typescript": "^4.7.4" + }, + "files": [ + "dist", + "src", + "jest.config.js", + "tsconfig.build.json", + "tsconfig.json", + ".prettierrc" + ] +} diff --git a/hogvm/typescript/pnpm-lock.yaml b/hogvm/typescript/pnpm-lock.yaml new file mode 100644 index 0000000000000..e317797e98e25 --- /dev/null +++ b/hogvm/typescript/pnpm-lock.yaml @@ -0,0 +1,5154 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +devDependencies: + '@swc-node/register': + specifier: ^1.5.1 + version: 1.5.1(@swc/core@1.2.186)(typescript@4.7.4) + '@swc/core': + specifier: ^1.2.186 + version: 1.2.186 + '@swc/jest': + specifier: ^0.2.21 + version: 0.2.21(@swc/core@1.2.186) + '@typescript-eslint/eslint-plugin': + specifier: ^5.33.0 + version: 5.33.0(@typescript-eslint/parser@5.33.0)(eslint@8.22.0)(typescript@4.7.4) + '@typescript-eslint/parser': + specifier: ^5.33.0 + version: 5.33.0(eslint@8.22.0)(typescript@4.7.4) + eslint: + specifier: ^8.22.0 + version: 8.22.0 + eslint-config-prettier: + specifier: ^8.5.0 + version: 8.5.0(eslint@8.22.0) + eslint-plugin-eslint-comments: + specifier: ^3.2.0 + version: 3.2.0(eslint@8.22.0) + eslint-plugin-import: + specifier: ^2.26.0 + version: 2.26.0(@typescript-eslint/parser@5.33.0)(eslint@8.22.0) + eslint-plugin-no-only-tests: + specifier: ^3.0.0 + version: 3.0.0 + eslint-plugin-node: + specifier: ^11.1.0 + version: 11.1.0(eslint@8.22.0) + eslint-plugin-prettier: + specifier: ^4.2.1 + version: 4.2.1(eslint-config-prettier@8.5.0)(eslint@8.22.0)(prettier@2.8.8) + eslint-plugin-promise: + specifier: ^6.0.0 + version: 6.0.0(eslint@8.22.0) + eslint-plugin-simple-import-sort: + specifier: ^7.0.0 + version: 7.0.0(eslint@8.22.0) + jest: + specifier: ^28.1.1 + version: 28.1.1 + prettier: + specifier: ^2.8.8 + version: 2.8.8 + typescript: + specifier: ^4.7.4 + version: 4.7.4 + +packages: + /@ampproject/remapping@2.2.1: + resolution: + { + integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==, + } + engines: { node: '>=6.0.0' } + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.18 + dev: true + + /@babel/code-frame@7.22.5: + resolution: + { + integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/highlight': 7.22.5 + dev: true + + /@babel/compat-data@7.22.5: + resolution: + { + integrity: sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/core@7.22.5: + resolution: + { + integrity: sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@ampproject/remapping': 2.2.1 + '@babel/code-frame': 7.22.5 + '@babel/generator': 7.22.5 + '@babel/helper-compilation-targets': 7.22.5(@babel/core@7.22.5) + '@babel/helper-module-transforms': 7.22.5 + '@babel/helpers': 7.22.5 + '@babel/parser': 7.22.5 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.5 + '@babel/types': 7.22.5 + convert-source-map: 1.9.0 + debug: 4.3.4 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/generator@7.22.5: + resolution: + { + integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + '@jridgewell/gen-mapping': 0.3.3 + '@jridgewell/trace-mapping': 0.3.18 + jsesc: 2.5.2 + dev: true + + /@babel/helper-compilation-targets@7.22.5(@babel/core@7.22.5): + resolution: + { + integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/compat-data': 7.22.5 + '@babel/core': 7.22.5 + '@babel/helper-validator-option': 7.22.5 + browserslist: 4.21.9 + lru-cache: 5.1.1 + semver: 6.3.0 + dev: true + + /@babel/helper-environment-visitor@7.22.5: + resolution: + { + integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-function-name@7.22.5: + resolution: + { + integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/template': 7.22.5 + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-hoist-variables@7.22.5: + resolution: + { + integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-module-imports@7.22.5: + resolution: + { + integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-module-transforms@7.22.5: + resolution: + { + integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-module-imports': 7.22.5 + '@babel/helper-simple-access': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.5 + '@babel/helper-validator-identifier': 7.22.5 + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.5 + '@babel/types': 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/helper-plugin-utils@7.22.5: + resolution: + { + integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-simple-access@7.22.5: + resolution: + { + integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-split-export-declaration@7.22.5: + resolution: + { + integrity: sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/helper-string-parser@7.22.5: + resolution: + { + integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-validator-identifier@7.22.5: + resolution: + { + integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helper-validator-option@7.22.5: + resolution: + { + integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==, + } + engines: { node: '>=6.9.0' } + dev: true + + /@babel/helpers@7.22.5: + resolution: + { + integrity: sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/template': 7.22.5 + '@babel/traverse': 7.22.5 + '@babel/types': 7.22.5 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/highlight@7.22.5: + resolution: + { + integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-validator-identifier': 7.22.5 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser@7.22.5: + resolution: + { + integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==, + } + engines: { node: '>=6.0.0' } + hasBin: true + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.5): + resolution: + { + integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.5): + resolution: + { + integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.5): + resolution: + { + integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.5): + resolution: + { + integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.5): + resolution: + { + integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.5): + resolution: + { + integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.5): + resolution: + { + integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.5): + resolution: + { + integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.5): + resolution: + { + integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.5): + resolution: + { + integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.5): + resolution: + { + integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==, + } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.5): + resolution: + { + integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.5): + resolution: + { + integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==, + } + engines: { node: '>=6.9.0' } + peerDependencies: + '@babel/core': ^7.0.0-0 + dependencies: + '@babel/core': 7.22.5 + '@babel/helper-plugin-utils': 7.22.5 + dev: true + + /@babel/template@7.22.5: + resolution: + { + integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/code-frame': 7.22.5 + '@babel/parser': 7.22.5 + '@babel/types': 7.22.5 + dev: true + + /@babel/traverse@7.22.5: + resolution: + { + integrity: sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/code-frame': 7.22.5 + '@babel/generator': 7.22.5 + '@babel/helper-environment-visitor': 7.22.5 + '@babel/helper-function-name': 7.22.5 + '@babel/helper-hoist-variables': 7.22.5 + '@babel/helper-split-export-declaration': 7.22.5 + '@babel/parser': 7.22.5 + '@babel/types': 7.22.5 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@babel/types@7.22.5: + resolution: + { + integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==, + } + engines: { node: '>=6.9.0' } + dependencies: + '@babel/helper-string-parser': 7.22.5 + '@babel/helper-validator-identifier': 7.22.5 + to-fast-properties: 2.0.0 + dev: true + + /@bcoe/v8-coverage@0.2.3: + resolution: + { + integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==, + } + dev: true + + /@eslint/eslintrc@1.4.1: + resolution: + { + integrity: sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.5.2 + globals: 13.20.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/config-array@0.10.7: + resolution: + { + integrity: sha512-MDl6D6sBsaV452/QSdX+4CXIjZhIcI0PELsxUjk4U828yd58vk3bTIvk/6w5FY+4hIy9sLW0sfrV7K7Kc++j/w==, + } + engines: { node: '>=10.10.0' } + dependencies: + '@humanwhocodes/object-schema': 1.2.1 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/gitignore-to-minimatch@1.0.2: + resolution: + { + integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==, + } + dev: true + + /@humanwhocodes/object-schema@1.2.1: + resolution: + { + integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==, + } + dev: true + + /@istanbuljs/load-nyc-config@1.1.0: + resolution: + { + integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==, + } + engines: { node: '>=8' } + dependencies: + camelcase: 5.3.1 + find-up: 4.1.0 + get-package-type: 0.1.0 + js-yaml: 3.14.1 + resolve-from: 5.0.0 + dev: true + + /@istanbuljs/schema@0.1.3: + resolution: + { + integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==, + } + engines: { node: '>=8' } + dev: true + + /@jest/console@28.1.3: + resolution: + { + integrity: sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + chalk: 4.1.2 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + slash: 3.0.0 + dev: true + + /@jest/core@28.1.3: + resolution: + { + integrity: sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/console': 28.1.3 + '@jest/reporters': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + ci-info: 3.8.0 + exit: 0.1.2 + graceful-fs: 4.2.11 + jest-changed-files: 28.1.3 + jest-config: 28.1.3(@types/node@20.3.2) + jest-haste-map: 28.1.3 + jest-message-util: 28.1.3 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-resolve-dependencies: 28.1.3 + jest-runner: 28.1.3 + jest-runtime: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + jest-watcher: 28.1.3 + micromatch: 4.0.5 + pretty-format: 28.1.3 + rimraf: 3.0.2 + slash: 3.0.0 + strip-ansi: 6.0.1 + transitivePeerDependencies: + - supports-color + - ts-node + dev: true + + /@jest/create-cache-key-function@27.5.1: + resolution: + { + integrity: sha512-dmH1yW+makpTSURTy8VzdUwFnfQh1G8R+DxO2Ho2FFmBbKFEVm+3jWdvFhE2VqB/LATCTokkP0dotjyQyw5/AQ==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + dependencies: + '@jest/types': 27.5.1 + dev: true + + /@jest/environment@28.1.3: + resolution: + { + integrity: sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + jest-mock: 28.1.3 + dev: true + + /@jest/expect-utils@28.1.3: + resolution: + { + integrity: sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + jest-get-type: 28.0.2 + dev: true + + /@jest/expect@28.1.3: + resolution: + { + integrity: sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + expect: 28.1.3 + jest-snapshot: 28.1.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/fake-timers@28.1.3: + resolution: + { + integrity: sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/types': 28.1.3 + '@sinonjs/fake-timers': 9.1.2 + '@types/node': 20.3.2 + jest-message-util: 28.1.3 + jest-mock: 28.1.3 + jest-util: 28.1.3 + dev: true + + /@jest/globals@28.1.3: + resolution: + { + integrity: sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/types': 28.1.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/reporters@28.1.3: + resolution: + { + integrity: sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@bcoe/v8-coverage': 0.2.3 + '@jest/console': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.18 + '@types/node': 20.3.2 + chalk: 4.1.2 + collect-v8-coverage: 1.0.1 + exit: 0.1.2 + glob: 7.2.3 + graceful-fs: 4.2.11 + istanbul-lib-coverage: 3.2.0 + istanbul-lib-instrument: 5.2.1 + istanbul-lib-report: 3.0.0 + istanbul-lib-source-maps: 4.0.1 + istanbul-reports: 3.1.5 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + jest-worker: 28.1.3 + slash: 3.0.0 + string-length: 4.0.2 + strip-ansi: 6.0.1 + terminal-link: 2.1.1 + v8-to-istanbul: 9.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/schemas@28.1.3: + resolution: + { + integrity: sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@sinclair/typebox': 0.24.51 + dev: true + + /@jest/source-map@28.1.2: + resolution: + { + integrity: sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jridgewell/trace-mapping': 0.3.18 + callsites: 3.1.0 + graceful-fs: 4.2.11 + dev: true + + /@jest/test-result@28.1.3: + resolution: + { + integrity: sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/console': 28.1.3 + '@jest/types': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.4 + collect-v8-coverage: 1.0.1 + dev: true + + /@jest/test-sequencer@28.1.3: + resolution: + { + integrity: sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/test-result': 28.1.3 + graceful-fs: 4.2.11 + jest-haste-map: 28.1.3 + slash: 3.0.0 + dev: true + + /@jest/transform@28.1.3: + resolution: + { + integrity: sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@babel/core': 7.22.5 + '@jest/types': 28.1.3 + '@jridgewell/trace-mapping': 0.3.18 + babel-plugin-istanbul: 6.1.1 + chalk: 4.1.2 + convert-source-map: 1.9.0 + fast-json-stable-stringify: 2.1.0 + graceful-fs: 4.2.11 + jest-haste-map: 28.1.3 + jest-regex-util: 28.0.2 + jest-util: 28.1.3 + micromatch: 4.0.5 + pirates: 4.0.6 + slash: 3.0.0 + write-file-atomic: 4.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@jest/types@27.5.1: + resolution: + { + integrity: sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==, + } + engines: { node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0 } + dependencies: + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 + '@types/node': 20.3.2 + '@types/yargs': 16.0.5 + chalk: 4.1.2 + dev: true + + /@jest/types@28.1.3: + resolution: + { + integrity: sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/schemas': 28.1.3 + '@types/istanbul-lib-coverage': 2.0.4 + '@types/istanbul-reports': 3.0.1 + '@types/node': 20.3.2 + '@types/yargs': 17.0.24 + chalk: 4.1.2 + dev: true + + /@jridgewell/gen-mapping@0.3.3: + resolution: + { + integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==, + } + engines: { node: '>=6.0.0' } + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.18 + dev: true + + /@jridgewell/resolve-uri@3.1.0: + resolution: + { + integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==, + } + engines: { node: '>=6.0.0' } + dev: true + + /@jridgewell/set-array@1.1.2: + resolution: + { + integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==, + } + engines: { node: '>=6.0.0' } + dev: true + + /@jridgewell/sourcemap-codec@1.4.14: + resolution: + { + integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==, + } + dev: true + + /@jridgewell/sourcemap-codec@1.4.15: + resolution: + { + integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==, + } + dev: true + + /@jridgewell/trace-mapping@0.3.18: + resolution: + { + integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==, + } + dependencies: + '@jridgewell/resolve-uri': 3.1.0 + '@jridgewell/sourcemap-codec': 1.4.14 + dev: true + + /@nodelib/fs.scandir@2.1.5: + resolution: + { + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, + } + engines: { node: '>= 8' } + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat@2.0.5: + resolution: + { + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, + } + engines: { node: '>= 8' } + dev: true + + /@nodelib/fs.walk@1.2.8: + resolution: + { + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, + } + engines: { node: '>= 8' } + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.15.0 + dev: true + + /@sinclair/typebox@0.24.51: + resolution: + { + integrity: sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==, + } + dev: true + + /@sinonjs/commons@1.8.6: + resolution: + { + integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==, + } + dependencies: + type-detect: 4.0.8 + dev: true + + /@sinonjs/fake-timers@9.1.2: + resolution: + { + integrity: sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==, + } + dependencies: + '@sinonjs/commons': 1.8.6 + dev: true + + /@swc-node/core@1.10.4(@swc/core@1.2.186): + resolution: + { + integrity: sha512-ixZCb4LsSUPflnOxj4a8T5yTPzKbgvP+tF0N59Rk2+68ikFRt9Qci2qy9xfuDIQbuiONzXersrNpd+p598uH0A==, + } + engines: { node: '>= 10' } + peerDependencies: + '@swc/core': '>= 1.3' + dependencies: + '@swc/core': 1.2.186 + dev: true + + /@swc-node/register@1.5.1(@swc/core@1.2.186)(typescript@4.7.4): + resolution: + { + integrity: sha512-6IL5s4QShKGs08qAeNou3rDA3gbp2WHk6fo0XnJXQn/aC9k6FnVBbj/thGOIEDtgNhC/DKpZT8tCY1LpQnOZFg==, + } + peerDependencies: + typescript: '>= 4.3' + dependencies: + '@swc-node/core': 1.10.4(@swc/core@1.2.186) + '@swc-node/sourcemap-support': 0.2.4 + colorette: 2.0.20 + debug: 4.3.4 + pirates: 4.0.6 + tslib: 2.6.0 + typescript: 4.7.4 + transitivePeerDependencies: + - '@swc/core' + - supports-color + dev: true + + /@swc-node/sourcemap-support@0.2.4: + resolution: + { + integrity: sha512-lAi8xXFpUPMaABCI0sFdKQL4owsjw6BPGjtrVJ90sRCUS4yNPMT0KbTeTWCxB8oQwYbbaQGOusd/+kavNMqJcg==, + } + dependencies: + source-map-support: 0.5.21 + tslib: 2.6.0 + dev: true + + /@swc/core-android-arm-eabi@1.2.186: + resolution: + { + integrity: sha512-y+xiLOlkksP69mCQTbSJi/TvELJ+VAVCS/A8xBynnbZXyst4byaEDz0b6PpSTeFU0QufyygzlIARBBxi48RAQg==, + } + engines: { node: '>=10' } + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@swc/core-android-arm64@1.2.186: + resolution: + { + integrity: sha512-W7FZDXfs2b8UIsdBlyRbG8Me2L5k77nitd38LmPFzj9G67DQWhVyoCoHMx38kbsRE82GVO2LmZ28Ehrl7TQw5w==, + } + engines: { node: '>=10' } + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@swc/core-darwin-arm64@1.2.186: + resolution: + { + integrity: sha512-v0aKuzZEV8zqyxrFohVzKjbbOWllgUd0Mgs8Fbft/K7Brp4QzBXvSjhOwsnNE4AlwzRLdINQfQz/RO6Ygp9H4Q==, + } + engines: { node: '>=10' } + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-darwin-x64@1.2.186: + resolution: + { + integrity: sha512-qhwFRvjFxkgiPqpg8ifo9bN6ONlPdn0xWPnkph2rpJhByMkNW2LEIApEPgS0ePhI9gq4Wksp5oxCviH1v36gQA==, + } + engines: { node: '>=10' } + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@swc/core-freebsd-x64@1.2.186: + resolution: + { + integrity: sha512-HhL4HqqShE3lCB7NWXRVjjiEN4t05usHrCBtHEADsZDAGglJRMjT9ZLGLVxGOxEziWCIR+kOV2jcMv0Bf4Bbaw==, + } + engines: { node: '>=10' } + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm-gnueabihf@1.2.186: + resolution: + { + integrity: sha512-ouAREnVdbUnZA0y4wYdAZZKIvqJ1uer9hOCbafgGyrmR9i8Lhswz2fPUGOUc+rxjqsP1z7uN5CpMcAH4KvyNUQ==, + } + engines: { node: '>=10' } + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm64-gnu@1.2.186: + resolution: + { + integrity: sha512-b8GbZ2FVlQrDWyqC/KW9zScAvvUx6StLDvGAPWxD2GvFHjE0iPnvLHGvuVuhje0pFFqSwZnQ5/KZ6VyrKowPJw==, + } + engines: { node: '>=10' } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-arm64-musl@1.2.186: + resolution: + { + integrity: sha512-vWvfQiC7K2oMxuKbAWTgVVoTs7SpHb8GyecAzQbQWNIyOycLMihCXhgj99cz0GaSeEs/0SEd+FSoU+uldUysjA==, + } + engines: { node: '>=10' } + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-x64-gnu@1.2.186: + resolution: + { + integrity: sha512-lGBOQd9GZsk6JQd1teZPIirir4vpcGPFlEKaoWMHTVgb4wyU0I6sW2edoHMWu+mUugs12/JpHWh7sw+ubgZzHA==, + } + engines: { node: '>=10' } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-linux-x64-musl@1.2.186: + resolution: + { + integrity: sha512-H6pFxBpg3R+g0DDXzs39c9A7+O/ai1Zwliwo7jwOfLu4ef/cq2xrKa0AJ22lawtU9A+4gwRCX78phf2ezjC2jw==, + } + engines: { node: '>=10' } + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-arm64-msvc@1.2.186: + resolution: + { + integrity: sha512-B178S3J5L9Z21IBVMNCarvM6kQrxHQVtT8V7vhUgldPJ5Nc2ty7ELYvrSdtiARqKP5PacKMur+nb8XIyhoJfIw==, + } + engines: { node: '>=10' } + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-ia32-msvc@1.2.186: + resolution: + { + integrity: sha512-0VqhXRn+MVth9hdwRR/X0unT9hdUOa5Y8FRUgMm3ft/72bFSAz3E8UNYMWMtVbjuViNYJgAOPML+VE9UqN80JQ==, + } + engines: { node: '>=10' } + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core-win32-x64-msvc@1.2.186: + resolution: + { + integrity: sha512-T+sNpLbtg5Q1zrDIOwzRDVCKQHb4eQx8MlIk9tF74amlBLt1GKBdgRn17YAA6GrNHRw7QHaDIeCEdc5OuUztvg==, + } + engines: { node: '>=10' } + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@swc/core@1.2.186: + resolution: + { + integrity: sha512-n+I0z+gIsk+rkO2/UYGLcnyI2bq0YcHFtnMynRtZ8v541luGszFLBrayd3ljnmt4mFzSPY+2gTSQgK5HNuYk5g==, + } + engines: { node: '>=10' } + hasBin: true + optionalDependencies: + '@swc/core-android-arm-eabi': 1.2.186 + '@swc/core-android-arm64': 1.2.186 + '@swc/core-darwin-arm64': 1.2.186 + '@swc/core-darwin-x64': 1.2.186 + '@swc/core-freebsd-x64': 1.2.186 + '@swc/core-linux-arm-gnueabihf': 1.2.186 + '@swc/core-linux-arm64-gnu': 1.2.186 + '@swc/core-linux-arm64-musl': 1.2.186 + '@swc/core-linux-x64-gnu': 1.2.186 + '@swc/core-linux-x64-musl': 1.2.186 + '@swc/core-win32-arm64-msvc': 1.2.186 + '@swc/core-win32-ia32-msvc': 1.2.186 + '@swc/core-win32-x64-msvc': 1.2.186 + dev: true + + /@swc/jest@0.2.21(@swc/core@1.2.186): + resolution: + { + integrity: sha512-/+NcExiZbxXANNhNPnIdFuGq62CeumulLS1bngwqIXd8H7d96LFUfrYzdt8tlTwLMel8tFtQ5aRjzVkyOTyPDw==, + } + engines: { npm: '>= 7.0.0' } + peerDependencies: + '@swc/core': '*' + dependencies: + '@jest/create-cache-key-function': 27.5.1 + '@swc/core': 1.2.186 + dev: true + + /@types/babel__core@7.20.1: + resolution: + { + integrity: sha512-aACu/U/omhdk15O4Nfb+fHgH/z3QsfQzpnvRZhYhThms83ZnAOZz7zZAWO7mn2yyNQaA4xTO8GLK3uqFU4bYYw==, + } + dependencies: + '@babel/parser': 7.22.5 + '@babel/types': 7.22.5 + '@types/babel__generator': 7.6.4 + '@types/babel__template': 7.4.1 + '@types/babel__traverse': 7.20.1 + dev: true + + /@types/babel__generator@7.6.4: + resolution: + { + integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==, + } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@types/babel__template@7.4.1: + resolution: + { + integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==, + } + dependencies: + '@babel/parser': 7.22.5 + '@babel/types': 7.22.5 + dev: true + + /@types/babel__traverse@7.20.1: + resolution: + { + integrity: sha512-MitHFXnhtgwsGZWtT68URpOvLN4EREih1u3QtQiN4VdAxWKRVvGCSvw/Qth0M0Qq3pJpnGOu5JaM/ydK7OGbqg==, + } + dependencies: + '@babel/types': 7.22.5 + dev: true + + /@types/graceful-fs@4.1.6: + resolution: + { + integrity: sha512-Sig0SNORX9fdW+bQuTEovKj3uHcUL6LQKbCrrqb1X7J6/ReAbhCXRAhc+SMejhLELFj2QcyuxmUooZ4bt5ReSw==, + } + dependencies: + '@types/node': 20.3.2 + dev: true + + /@types/istanbul-lib-coverage@2.0.4: + resolution: + { + integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==, + } + dev: true + + /@types/istanbul-lib-report@3.0.0: + resolution: + { + integrity: sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==, + } + dependencies: + '@types/istanbul-lib-coverage': 2.0.4 + dev: true + + /@types/istanbul-reports@3.0.1: + resolution: + { + integrity: sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==, + } + dependencies: + '@types/istanbul-lib-report': 3.0.0 + dev: true + + /@types/json-schema@7.0.12: + resolution: + { + integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==, + } + dev: true + + /@types/json5@0.0.29: + resolution: + { + integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==, + } + dev: true + + /@types/node@20.3.2: + resolution: + { + integrity: sha512-vOBLVQeCQfIcF/2Y7eKFTqrMnizK5lRNQ7ykML/5RuwVXVWxYkgwS7xbt4B6fKCUPgbSL5FSsjHQpaGQP/dQmw==, + } + dev: true + + /@types/prettier@2.7.3: + resolution: + { + integrity: sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==, + } + dev: true + + /@types/stack-utils@2.0.1: + resolution: + { + integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==, + } + dev: true + + /@types/yargs-parser@21.0.0: + resolution: + { + integrity: sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==, + } + dev: true + + /@types/yargs@16.0.5: + resolution: + { + integrity: sha512-AxO/ADJOBFJScHbWhq2xAhlWP24rY4aCEG/NFaMvbT3X2MgRsLjhjQwsn0Zi5zn0LG9jUhCCZMeX9Dkuw6k+vQ==, + } + dependencies: + '@types/yargs-parser': 21.0.0 + dev: true + + /@types/yargs@17.0.24: + resolution: + { + integrity: sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==, + } + dependencies: + '@types/yargs-parser': 21.0.0 + dev: true + + /@typescript-eslint/eslint-plugin@5.33.0(@typescript-eslint/parser@5.33.0)(eslint@8.22.0)(typescript@4.7.4): + resolution: + { + integrity: sha512-jHvZNSW2WZ31OPJ3enhLrEKvAZNyAFWZ6rx9tUwaessTc4sx9KmgMNhVcqVAl1ETnT5rU5fpXTLmY9YvC1DCNg==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + '@typescript-eslint/parser': ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/parser': 5.33.0(eslint@8.22.0)(typescript@4.7.4) + '@typescript-eslint/scope-manager': 5.33.0 + '@typescript-eslint/type-utils': 5.33.0(eslint@8.22.0)(typescript@4.7.4) + '@typescript-eslint/utils': 5.33.0(eslint@8.22.0)(typescript@4.7.4) + debug: 4.3.4 + eslint: 8.22.0 + functional-red-black-tree: 1.0.1 + ignore: 5.2.4 + regexpp: 3.2.0 + semver: 7.5.3 + tsutils: 3.21.0(typescript@4.7.4) + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@5.33.0(eslint@8.22.0)(typescript@4.7.4): + resolution: + { + integrity: sha512-cgM5cJrWmrDV2KpvlcSkelTBASAs1mgqq+IUGKJvFxWrapHpaRy5EXPQz9YaKF3nZ8KY18ILTiVpUtbIac86/w==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 5.33.0 + '@typescript-eslint/types': 5.33.0 + '@typescript-eslint/typescript-estree': 5.33.0(typescript@4.7.4) + debug: 4.3.4 + eslint: 8.22.0 + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@5.33.0: + resolution: + { + integrity: sha512-/Jta8yMNpXYpRDl8EwF/M8It2A9sFJTubDo0ATZefGXmOqlaBffEw0ZbkbQ7TNDK6q55NPHFshGBPAZvZkE8Pw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + '@typescript-eslint/types': 5.33.0 + '@typescript-eslint/visitor-keys': 5.33.0 + dev: true + + /@typescript-eslint/type-utils@5.33.0(eslint@8.22.0)(typescript@4.7.4): + resolution: + { + integrity: sha512-2zB8uEn7hEH2pBeyk3NpzX1p3lF9dKrEbnXq1F7YkpZ6hlyqb2yZujqgRGqXgRBTHWIUG3NGx/WeZk224UKlIA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: '*' + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/utils': 5.33.0(eslint@8.22.0)(typescript@4.7.4) + debug: 4.3.4 + eslint: 8.22.0 + tsutils: 3.21.0(typescript@4.7.4) + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types@5.33.0: + resolution: + { + integrity: sha512-nIMt96JngB4MYFYXpZ/3ZNU4GWPNdBbcB5w2rDOCpXOVUkhtNlG2mmm8uXhubhidRZdwMaMBap7Uk8SZMU/ppw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /@typescript-eslint/typescript-estree@5.33.0(typescript@4.7.4): + resolution: + { + integrity: sha512-tqq3MRLlggkJKJUrzM6wltk8NckKyyorCSGMq4eVkyL5sDYzJJcMgZATqmF8fLdsWrW7OjjIZ1m9v81vKcaqwQ==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 5.33.0 + '@typescript-eslint/visitor-keys': 5.33.0 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + semver: 7.5.3 + tsutils: 3.21.0(typescript@4.7.4) + typescript: 4.7.4 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@5.33.0(eslint@8.22.0)(typescript@4.7.4): + resolution: + { + integrity: sha512-JxOAnXt9oZjXLIiXb5ZIcZXiwVHCkqZgof0O8KPgz7C7y0HS42gi75PdPlqh1Tf109M0fyUw45Ao6JLo7S5AHw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@types/json-schema': 7.0.12 + '@typescript-eslint/scope-manager': 5.33.0 + '@typescript-eslint/types': 5.33.0 + '@typescript-eslint/typescript-estree': 5.33.0(typescript@4.7.4) + eslint: 8.22.0 + eslint-scope: 5.1.1 + eslint-utils: 3.0.0(eslint@8.22.0) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys@5.33.0: + resolution: + { + integrity: sha512-/XsqCzD4t+Y9p5wd9HZiptuGKBlaZO5showwqODii5C0nZawxWLF+Q6k5wYHBrQv96h6GYKyqqMHCSTqta8Kiw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + '@typescript-eslint/types': 5.33.0 + eslint-visitor-keys: 3.4.1 + dev: true + + /acorn-jsx@5.3.2(acorn@8.9.0): + resolution: + { + integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==, + } + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.9.0 + dev: true + + /acorn@8.9.0: + resolution: + { + integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==, + } + engines: { node: '>=0.4.0' } + hasBin: true + dev: true + + /ajv@6.12.6: + resolution: + { + integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==, + } + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + dev: true + + /ansi-escapes@4.3.2: + resolution: + { + integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==, + } + engines: { node: '>=8' } + dependencies: + type-fest: 0.21.3 + dev: true + + /ansi-regex@5.0.1: + resolution: + { + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, + } + engines: { node: '>=8' } + dev: true + + /ansi-styles@3.2.1: + resolution: + { + integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==, + } + engines: { node: '>=4' } + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles@4.3.0: + resolution: + { + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, + } + engines: { node: '>=8' } + dependencies: + color-convert: 2.0.1 + dev: true + + /ansi-styles@5.2.0: + resolution: + { + integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, + } + engines: { node: '>=10' } + dev: true + + /anymatch@3.1.3: + resolution: + { + integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, + } + engines: { node: '>= 8' } + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /argparse@1.0.10: + resolution: + { + integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==, + } + dependencies: + sprintf-js: 1.0.3 + dev: true + + /argparse@2.0.1: + resolution: + { + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, + } + dev: true + + /array-buffer-byte-length@1.0.0: + resolution: + { + integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==, + } + dependencies: + call-bind: 1.0.2 + is-array-buffer: 3.0.2 + dev: true + + /array-includes@3.1.6: + resolution: + { + integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + get-intrinsic: 1.2.1 + is-string: 1.0.7 + dev: true + + /array-union@2.1.0: + resolution: + { + integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==, + } + engines: { node: '>=8' } + dev: true + + /array.prototype.flat@1.3.1: + resolution: + { + integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + es-shim-unscopables: 1.0.0 + dev: true + + /available-typed-arrays@1.0.5: + resolution: + { + integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==, + } + engines: { node: '>= 0.4' } + dev: true + + /babel-jest@28.1.3(@babel/core@7.22.5): + resolution: + { + integrity: sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + peerDependencies: + '@babel/core': ^7.8.0 + dependencies: + '@babel/core': 7.22.5 + '@jest/transform': 28.1.3 + '@types/babel__core': 7.20.1 + babel-plugin-istanbul: 6.1.1 + babel-preset-jest: 28.1.3(@babel/core@7.22.5) + chalk: 4.1.2 + graceful-fs: 4.2.11 + slash: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-istanbul@6.1.1: + resolution: + { + integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==, + } + engines: { node: '>=8' } + dependencies: + '@babel/helper-plugin-utils': 7.22.5 + '@istanbuljs/load-nyc-config': 1.1.0 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-instrument: 5.2.1 + test-exclude: 6.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /babel-plugin-jest-hoist@28.1.3: + resolution: + { + integrity: sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@babel/template': 7.22.5 + '@babel/types': 7.22.5 + '@types/babel__core': 7.20.1 + '@types/babel__traverse': 7.20.1 + dev: true + + /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.5): + resolution: + { + integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==, + } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.5 + '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.5) + '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.5) + '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.5) + '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.5) + '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.5) + '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.5) + '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.5) + '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.5) + '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.5) + '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.5) + '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.5) + '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.5) + dev: true + + /babel-preset-jest@28.1.3(@babel/core@7.22.5): + resolution: + { + integrity: sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + peerDependencies: + '@babel/core': ^7.0.0 + dependencies: + '@babel/core': 7.22.5 + babel-plugin-jest-hoist: 28.1.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.5) + dev: true + + /balanced-match@1.0.2: + resolution: + { + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, + } + dev: true + + /brace-expansion@1.1.11: + resolution: + { + integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, + } + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /braces@3.0.2: + resolution: + { + integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==, + } + engines: { node: '>=8' } + dependencies: + fill-range: 7.0.1 + dev: true + + /browserslist@4.21.9: + resolution: + { + integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==, + } + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } + hasBin: true + dependencies: + caniuse-lite: 1.0.30001508 + electron-to-chromium: 1.4.441 + node-releases: 2.0.12 + update-browserslist-db: 1.0.11(browserslist@4.21.9) + dev: true + + /bser@2.1.1: + resolution: + { + integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==, + } + dependencies: + node-int64: 0.4.0 + dev: true + + /buffer-from@1.1.2: + resolution: + { + integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==, + } + dev: true + + /call-bind@1.0.2: + resolution: + { + integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==, + } + dependencies: + function-bind: 1.1.1 + get-intrinsic: 1.2.1 + dev: true + + /callsites@3.1.0: + resolution: + { + integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==, + } + engines: { node: '>=6' } + dev: true + + /camelcase@5.3.1: + resolution: + { + integrity: sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==, + } + engines: { node: '>=6' } + dev: true + + /camelcase@6.3.0: + resolution: + { + integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==, + } + engines: { node: '>=10' } + dev: true + + /caniuse-lite@1.0.30001508: + resolution: + { + integrity: sha512-sdQZOJdmt3GJs1UMNpCCCyeuS2IEGLXnHyAo9yIO5JJDjbjoVRij4M1qep6P6gFpptD1PqIYgzM+gwJbOi92mw==, + } + dev: true + + /chalk@2.4.2: + resolution: + { + integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==, + } + engines: { node: '>=4' } + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk@4.1.2: + resolution: + { + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, + } + engines: { node: '>=10' } + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /char-regex@1.0.2: + resolution: + { + integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==, + } + engines: { node: '>=10' } + dev: true + + /ci-info@3.8.0: + resolution: + { + integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==, + } + engines: { node: '>=8' } + dev: true + + /cjs-module-lexer@1.2.3: + resolution: + { + integrity: sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==, + } + dev: true + + /cliui@8.0.1: + resolution: + { + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, + } + engines: { node: '>=12' } + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /co@4.6.0: + resolution: + { + integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==, + } + engines: { iojs: '>= 1.0.0', node: '>= 0.12.0' } + dev: true + + /collect-v8-coverage@1.0.1: + resolution: + { + integrity: sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==, + } + dev: true + + /color-convert@1.9.3: + resolution: + { + integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==, + } + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert@2.0.1: + resolution: + { + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, + } + engines: { node: '>=7.0.0' } + dependencies: + color-name: 1.1.4 + dev: true + + /color-name@1.1.3: + resolution: + { + integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==, + } + dev: true + + /color-name@1.1.4: + resolution: + { + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, + } + dev: true + + /colorette@2.0.20: + resolution: + { + integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==, + } + dev: true + + /concat-map@0.0.1: + resolution: + { + integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, + } + dev: true + + /convert-source-map@1.9.0: + resolution: + { + integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==, + } + dev: true + + /cross-spawn@7.0.3: + resolution: + { + integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==, + } + engines: { node: '>= 8' } + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /debug@2.6.9: + resolution: + { + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, + } + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.0.0 + dev: true + + /debug@3.2.7: + resolution: + { + integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==, + } + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /debug@4.3.4: + resolution: + { + integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==, + } + engines: { node: '>=6.0' } + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /dedent@0.7.0: + resolution: + { + integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==, + } + dev: true + + /deep-is@0.1.4: + resolution: + { + integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==, + } + dev: true + + /deepmerge@4.3.1: + resolution: + { + integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==, + } + engines: { node: '>=0.10.0' } + dev: true + + /define-properties@1.2.0: + resolution: + { + integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==, + } + engines: { node: '>= 0.4' } + dependencies: + has-property-descriptors: 1.0.0 + object-keys: 1.1.1 + dev: true + + /detect-newline@3.1.0: + resolution: + { + integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==, + } + engines: { node: '>=8' } + dev: true + + /diff-sequences@28.1.1: + resolution: + { + integrity: sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dev: true + + /dir-glob@3.0.1: + resolution: + { + integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==, + } + engines: { node: '>=8' } + dependencies: + path-type: 4.0.0 + dev: true + + /doctrine@2.1.0: + resolution: + { + integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==, + } + engines: { node: '>=0.10.0' } + dependencies: + esutils: 2.0.3 + dev: true + + /doctrine@3.0.0: + resolution: + { + integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==, + } + engines: { node: '>=6.0.0' } + dependencies: + esutils: 2.0.3 + dev: true + + /electron-to-chromium@1.4.441: + resolution: + { + integrity: sha512-LlCgQ8zgYZPymf5H4aE9itwiIWH4YlCiv1HFLmmcBeFYi5E+3eaIFnjHzYtcFQbaKfAW+CqZ9pgxo33DZuoqPg==, + } + dev: true + + /emittery@0.10.2: + resolution: + { + integrity: sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==, + } + engines: { node: '>=12' } + dev: true + + /emoji-regex@8.0.0: + resolution: + { + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, + } + dev: true + + /error-ex@1.3.2: + resolution: + { + integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==, + } + dependencies: + is-arrayish: 0.2.1 + dev: true + + /es-abstract@1.21.2: + resolution: + { + integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==, + } + engines: { node: '>= 0.4' } + dependencies: + array-buffer-byte-length: 1.0.0 + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + es-set-tostringtag: 2.0.1 + es-to-primitive: 1.2.1 + function.prototype.name: 1.1.5 + get-intrinsic: 1.2.1 + get-symbol-description: 1.0.0 + globalthis: 1.0.3 + gopd: 1.0.1 + has: 1.0.3 + has-property-descriptors: 1.0.0 + has-proto: 1.0.1 + has-symbols: 1.0.3 + internal-slot: 1.0.5 + is-array-buffer: 3.0.2 + is-callable: 1.2.7 + is-negative-zero: 2.0.2 + is-regex: 1.1.4 + is-shared-array-buffer: 1.0.2 + is-string: 1.0.7 + is-typed-array: 1.1.10 + is-weakref: 1.0.2 + object-inspect: 1.12.3 + object-keys: 1.1.1 + object.assign: 4.1.4 + regexp.prototype.flags: 1.5.0 + safe-regex-test: 1.0.0 + string.prototype.trim: 1.2.7 + string.prototype.trimend: 1.0.6 + string.prototype.trimstart: 1.0.6 + typed-array-length: 1.0.4 + unbox-primitive: 1.0.2 + which-typed-array: 1.1.9 + dev: true + + /es-set-tostringtag@2.0.1: + resolution: + { + integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==, + } + engines: { node: '>= 0.4' } + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + has-tostringtag: 1.0.0 + dev: true + + /es-shim-unscopables@1.0.0: + resolution: + { + integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==, + } + dependencies: + has: 1.0.3 + dev: true + + /es-to-primitive@1.2.1: + resolution: + { + integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==, + } + engines: { node: '>= 0.4' } + dependencies: + is-callable: 1.2.7 + is-date-object: 1.0.5 + is-symbol: 1.0.4 + dev: true + + /escalade@3.1.1: + resolution: + { + integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==, + } + engines: { node: '>=6' } + dev: true + + /escape-string-regexp@1.0.5: + resolution: + { + integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==, + } + engines: { node: '>=0.8.0' } + dev: true + + /escape-string-regexp@2.0.0: + resolution: + { + integrity: sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==, + } + engines: { node: '>=8' } + dev: true + + /escape-string-regexp@4.0.0: + resolution: + { + integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==, + } + engines: { node: '>=10' } + dev: true + + /eslint-config-prettier@8.5.0(eslint@8.22.0): + resolution: + { + integrity: sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==, + } + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + dependencies: + eslint: 8.22.0 + dev: true + + /eslint-import-resolver-node@0.3.7: + resolution: + { + integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==, + } + dependencies: + debug: 3.2.7 + is-core-module: 2.12.1 + resolve: 1.22.2 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.33.0)(eslint-import-resolver-node@0.3.7)(eslint@8.22.0): + resolution: + { + integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==, + } + engines: { node: '>=4' } + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + dependencies: + '@typescript-eslint/parser': 5.33.0(eslint@8.22.0)(typescript@4.7.4) + debug: 3.2.7 + eslint: 8.22.0 + eslint-import-resolver-node: 0.3.7 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-es@3.0.1(eslint@8.22.0): + resolution: + { + integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==, + } + engines: { node: '>=8.10.0' } + peerDependencies: + eslint: '>=4.19.1' + dependencies: + eslint: 8.22.0 + eslint-utils: 2.1.0 + regexpp: 3.2.0 + dev: true + + /eslint-plugin-eslint-comments@3.2.0(eslint@8.22.0): + resolution: + { + integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==, + } + engines: { node: '>=6.5.0' } + peerDependencies: + eslint: '>=4.19.1' + dependencies: + escape-string-regexp: 1.0.5 + eslint: 8.22.0 + ignore: 5.2.4 + dev: true + + /eslint-plugin-import@2.26.0(@typescript-eslint/parser@5.33.0)(eslint@8.22.0): + resolution: + { + integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==, + } + engines: { node: '>=4' } + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + dependencies: + '@typescript-eslint/parser': 5.33.0(eslint@8.22.0)(typescript@4.7.4) + array-includes: 3.1.6 + array.prototype.flat: 1.3.1 + debug: 2.6.9 + doctrine: 2.1.0 + eslint: 8.22.0 + eslint-import-resolver-node: 0.3.7 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.33.0)(eslint-import-resolver-node@0.3.7)(eslint@8.22.0) + has: 1.0.3 + is-core-module: 2.12.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.values: 1.1.6 + resolve: 1.22.2 + tsconfig-paths: 3.14.2 + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-no-only-tests@3.0.0: + resolution: + { + integrity: sha512-I0PeXMs1vu21ap45hey4HQCJRqpcoIvGcNTPJe+UhUm8TwjQ6//mCrDqF8q0WS6LgmRDwQ4ovQej0AQsAHb5yg==, + } + engines: { node: '>=5.0.0' } + dev: true + + /eslint-plugin-node@11.1.0(eslint@8.22.0): + resolution: + { + integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==, + } + engines: { node: '>=8.10.0' } + peerDependencies: + eslint: '>=5.16.0' + dependencies: + eslint: 8.22.0 + eslint-plugin-es: 3.0.1(eslint@8.22.0) + eslint-utils: 2.1.0 + ignore: 5.2.4 + minimatch: 3.1.2 + resolve: 1.22.2 + semver: 6.3.0 + dev: true + + /eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.5.0)(eslint@8.22.0)(prettier@2.8.8): + resolution: + { + integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==, + } + engines: { node: '>=12.0.0' } + peerDependencies: + eslint: '>=7.28.0' + eslint-config-prettier: '*' + prettier: '>=2.0.0' + peerDependenciesMeta: + eslint-config-prettier: + optional: true + dependencies: + eslint: 8.22.0 + eslint-config-prettier: 8.5.0(eslint@8.22.0) + prettier: 2.8.8 + prettier-linter-helpers: 1.0.0 + dev: true + + /eslint-plugin-promise@6.0.0(eslint@8.22.0): + resolution: + { + integrity: sha512-7GPezalm5Bfi/E22PnQxDWH2iW9GTvAlUNTztemeHb6c1BniSyoeTrM87JkC0wYdi6aQrZX9p2qEiAno8aTcbw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.22.0 + dev: true + + /eslint-plugin-simple-import-sort@7.0.0(eslint@8.22.0): + resolution: + { + integrity: sha512-U3vEDB5zhYPNfxT5TYR7u01dboFZp+HNpnGhkDB2g/2E4wZ/g1Q9Ton8UwCLfRV9yAKyYqDh62oHOamvkFxsvw==, + } + peerDependencies: + eslint: '>=5.0.0' + dependencies: + eslint: 8.22.0 + dev: true + + /eslint-scope@5.1.1: + resolution: + { + integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==, + } + engines: { node: '>=8.0.0' } + dependencies: + esrecurse: 4.3.0 + estraverse: 4.3.0 + dev: true + + /eslint-scope@7.2.0: + resolution: + { + integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /eslint-utils@2.1.0: + resolution: + { + integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==, + } + engines: { node: '>=6' } + dependencies: + eslint-visitor-keys: 1.3.0 + dev: true + + /eslint-utils@3.0.0(eslint@8.22.0): + resolution: + { + integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==, + } + engines: { node: ^10.0.0 || ^12.0.0 || >= 14.0.0 } + peerDependencies: + eslint: '>=5' + dependencies: + eslint: 8.22.0 + eslint-visitor-keys: 2.1.0 + dev: true + + /eslint-visitor-keys@1.3.0: + resolution: + { + integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==, + } + engines: { node: '>=4' } + dev: true + + /eslint-visitor-keys@2.1.0: + resolution: + { + integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==, + } + engines: { node: '>=10' } + dev: true + + /eslint-visitor-keys@3.4.1: + resolution: + { + integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dev: true + + /eslint@8.22.0: + resolution: + { + integrity: sha512-ci4t0sz6vSRKdmkOGmprBo6fmI4PrphDFMy5JEq/fNS0gQkJM3rLmrqcp8ipMcdobH3KtUP40KniAE9W19S4wA==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + hasBin: true + dependencies: + '@eslint/eslintrc': 1.4.1 + '@humanwhocodes/config-array': 0.10.7 + '@humanwhocodes/gitignore-to-minimatch': 1.0.2 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.0 + eslint-utils: 3.0.0(eslint@8.22.0) + eslint-visitor-keys: 3.4.1 + espree: 9.5.2 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + functional-red-black-tree: 1.0.1 + glob-parent: 6.0.2 + globals: 13.20.0 + globby: 11.1.0 + grapheme-splitter: 1.0.4 + ignore: 5.2.4 + import-fresh: 3.3.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.1 + regexpp: 3.2.0 + strip-ansi: 6.0.1 + strip-json-comments: 3.1.1 + text-table: 0.2.0 + v8-compile-cache: 2.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@9.5.2: + resolution: + { + integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==, + } + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } + dependencies: + acorn: 8.9.0 + acorn-jsx: 5.3.2(acorn@8.9.0) + eslint-visitor-keys: 3.4.1 + dev: true + + /esprima@4.0.1: + resolution: + { + integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==, + } + engines: { node: '>=4' } + hasBin: true + dev: true + + /esquery@1.5.0: + resolution: + { + integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==, + } + engines: { node: '>=0.10' } + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse@4.3.0: + resolution: + { + integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==, + } + engines: { node: '>=4.0' } + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse@4.3.0: + resolution: + { + integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==, + } + engines: { node: '>=4.0' } + dev: true + + /estraverse@5.3.0: + resolution: + { + integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==, + } + engines: { node: '>=4.0' } + dev: true + + /esutils@2.0.3: + resolution: + { + integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==, + } + engines: { node: '>=0.10.0' } + dev: true + + /execa@5.1.1: + resolution: + { + integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==, + } + engines: { node: '>=10' } + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /exit@0.1.2: + resolution: + { + integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==, + } + engines: { node: '>= 0.8.0' } + dev: true + + /expect@28.1.3: + resolution: + { + integrity: sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/expect-utils': 28.1.3 + jest-get-type: 28.0.2 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + dev: true + + /fast-deep-equal@3.1.3: + resolution: + { + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, + } + dev: true + + /fast-diff@1.3.0: + resolution: + { + integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==, + } + dev: true + + /fast-glob@3.2.12: + resolution: + { + integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==, + } + engines: { node: '>=8.6.0' } + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.5 + dev: true + + /fast-json-stable-stringify@2.1.0: + resolution: + { + integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==, + } + dev: true + + /fast-levenshtein@2.0.6: + resolution: + { + integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==, + } + dev: true + + /fastq@1.15.0: + resolution: + { + integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==, + } + dependencies: + reusify: 1.0.4 + dev: true + + /fb-watchman@2.0.2: + resolution: + { + integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==, + } + dependencies: + bser: 2.1.1 + dev: true + + /file-entry-cache@6.0.1: + resolution: + { + integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flat-cache: 3.0.4 + dev: true + + /fill-range@7.0.1: + resolution: + { + integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==, + } + engines: { node: '>=8' } + dependencies: + to-regex-range: 5.0.1 + dev: true + + /find-up@4.1.0: + resolution: + { + integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==, + } + engines: { node: '>=8' } + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /find-up@5.0.0: + resolution: + { + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, + } + engines: { node: '>=10' } + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache@3.0.4: + resolution: + { + integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==, + } + engines: { node: ^10.12.0 || >=12.0.0 } + dependencies: + flatted: 3.2.7 + rimraf: 3.0.2 + dev: true + + /flatted@3.2.7: + resolution: + { + integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==, + } + dev: true + + /for-each@0.3.3: + resolution: + { + integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==, + } + dependencies: + is-callable: 1.2.7 + dev: true + + /fs.realpath@1.0.0: + resolution: + { + integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, + } + dev: true + + /fsevents@2.3.2: + resolution: + { + integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==, + } + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /function-bind@1.1.1: + resolution: + { + integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==, + } + dev: true + + /function.prototype.name@1.1.5: + resolution: + { + integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + functions-have-names: 1.2.3 + dev: true + + /functional-red-black-tree@1.0.1: + resolution: + { + integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==, + } + dev: true + + /functions-have-names@1.2.3: + resolution: + { + integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==, + } + dev: true + + /gensync@1.0.0-beta.2: + resolution: + { + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, + } + engines: { node: '>=6.9.0' } + dev: true + + /get-caller-file@2.0.5: + resolution: + { + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, + } + engines: { node: 6.* || 8.* || >= 10.* } + dev: true + + /get-intrinsic@1.2.1: + resolution: + { + integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==, + } + dependencies: + function-bind: 1.1.1 + has: 1.0.3 + has-proto: 1.0.1 + has-symbols: 1.0.3 + dev: true + + /get-package-type@0.1.0: + resolution: + { + integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==, + } + engines: { node: '>=8.0.0' } + dev: true + + /get-stream@6.0.1: + resolution: + { + integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==, + } + engines: { node: '>=10' } + dev: true + + /get-symbol-description@1.0.0: + resolution: + { + integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + dev: true + + /glob-parent@5.1.2: + resolution: + { + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, + } + engines: { node: '>= 6' } + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-parent@6.0.2: + resolution: + { + integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==, + } + engines: { node: '>=10.13.0' } + dependencies: + is-glob: 4.0.3 + dev: true + + /glob@7.2.3: + resolution: + { + integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, + } + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + dev: true + + /globals@11.12.0: + resolution: + { + integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==, + } + engines: { node: '>=4' } + dev: true + + /globals@13.20.0: + resolution: + { + integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==, + } + engines: { node: '>=8' } + dependencies: + type-fest: 0.20.2 + dev: true + + /globalthis@1.0.3: + resolution: + { + integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==, + } + engines: { node: '>= 0.4' } + dependencies: + define-properties: 1.2.0 + dev: true + + /globby@11.1.0: + resolution: + { + integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==, + } + engines: { node: '>=10' } + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.2.12 + ignore: 5.2.4 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /gopd@1.0.1: + resolution: + { + integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==, + } + dependencies: + get-intrinsic: 1.2.1 + dev: true + + /graceful-fs@4.2.11: + resolution: + { + integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==, + } + dev: true + + /grapheme-splitter@1.0.4: + resolution: + { + integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==, + } + dev: true + + /has-bigints@1.0.2: + resolution: + { + integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==, + } + dev: true + + /has-flag@3.0.0: + resolution: + { + integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==, + } + engines: { node: '>=4' } + dev: true + + /has-flag@4.0.0: + resolution: + { + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, + } + engines: { node: '>=8' } + dev: true + + /has-property-descriptors@1.0.0: + resolution: + { + integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==, + } + dependencies: + get-intrinsic: 1.2.1 + dev: true + + /has-proto@1.0.1: + resolution: + { + integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==, + } + engines: { node: '>= 0.4' } + dev: true + + /has-symbols@1.0.3: + resolution: + { + integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==, + } + engines: { node: '>= 0.4' } + dev: true + + /has-tostringtag@1.0.0: + resolution: + { + integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==, + } + engines: { node: '>= 0.4' } + dependencies: + has-symbols: 1.0.3 + dev: true + + /has@1.0.3: + resolution: + { + integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==, + } + engines: { node: '>= 0.4.0' } + dependencies: + function-bind: 1.1.1 + dev: true + + /html-escaper@2.0.2: + resolution: + { + integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==, + } + dev: true + + /human-signals@2.1.0: + resolution: + { + integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==, + } + engines: { node: '>=10.17.0' } + dev: true + + /ignore@5.2.4: + resolution: + { + integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==, + } + engines: { node: '>= 4' } + dev: true + + /import-fresh@3.3.0: + resolution: + { + integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==, + } + engines: { node: '>=6' } + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /import-local@3.1.0: + resolution: + { + integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==, + } + engines: { node: '>=8' } + hasBin: true + dependencies: + pkg-dir: 4.2.0 + resolve-cwd: 3.0.0 + dev: true + + /imurmurhash@0.1.4: + resolution: + { + integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==, + } + engines: { node: '>=0.8.19' } + dev: true + + /inflight@1.0.6: + resolution: + { + integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, + } + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: + { + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, + } + dev: true + + /internal-slot@1.0.5: + resolution: + { + integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==, + } + engines: { node: '>= 0.4' } + dependencies: + get-intrinsic: 1.2.1 + has: 1.0.3 + side-channel: 1.0.4 + dev: true + + /is-array-buffer@3.0.2: + resolution: + { + integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==, + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-typed-array: 1.1.10 + dev: true + + /is-arrayish@0.2.1: + resolution: + { + integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==, + } + dev: true + + /is-bigint@1.0.4: + resolution: + { + integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==, + } + dependencies: + has-bigints: 1.0.2 + dev: true + + /is-boolean-object@1.1.2: + resolution: + { + integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-callable@1.2.7: + resolution: + { + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, + } + engines: { node: '>= 0.4' } + dev: true + + /is-core-module@2.12.1: + resolution: + { + integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==, + } + dependencies: + has: 1.0.3 + dev: true + + /is-date-object@1.0.5: + resolution: + { + integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==, + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-extglob@2.1.1: + resolution: + { + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, + } + engines: { node: '>=0.10.0' } + dev: true + + /is-fullwidth-code-point@3.0.0: + resolution: + { + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, + } + engines: { node: '>=8' } + dev: true + + /is-generator-fn@2.1.0: + resolution: + { + integrity: sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==, + } + engines: { node: '>=6' } + dev: true + + /is-glob@4.0.3: + resolution: + { + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, + } + engines: { node: '>=0.10.0' } + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-negative-zero@2.0.2: + resolution: + { + integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==, + } + engines: { node: '>= 0.4' } + dev: true + + /is-number-object@1.0.7: + resolution: + { + integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==, + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-number@7.0.0: + resolution: + { + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, + } + engines: { node: '>=0.12.0' } + dev: true + + /is-regex@1.1.4: + resolution: + { + integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + has-tostringtag: 1.0.0 + dev: true + + /is-shared-array-buffer@1.0.2: + resolution: + { + integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==, + } + dependencies: + call-bind: 1.0.2 + dev: true + + /is-stream@2.0.1: + resolution: + { + integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==, + } + engines: { node: '>=8' } + dev: true + + /is-string@1.0.7: + resolution: + { + integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==, + } + engines: { node: '>= 0.4' } + dependencies: + has-tostringtag: 1.0.0 + dev: true + + /is-symbol@1.0.4: + resolution: + { + integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==, + } + engines: { node: '>= 0.4' } + dependencies: + has-symbols: 1.0.3 + dev: true + + /is-typed-array@1.1.10: + resolution: + { + integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==, + } + engines: { node: '>= 0.4' } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + dev: true + + /is-weakref@1.0.2: + resolution: + { + integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==, + } + dependencies: + call-bind: 1.0.2 + dev: true + + /isexe@2.0.0: + resolution: + { + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, + } + dev: true + + /istanbul-lib-coverage@3.2.0: + resolution: + { + integrity: sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==, + } + engines: { node: '>=8' } + dev: true + + /istanbul-lib-instrument@5.2.1: + resolution: + { + integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==, + } + engines: { node: '>=8' } + dependencies: + '@babel/core': 7.22.5 + '@babel/parser': 7.22.5 + '@istanbuljs/schema': 0.1.3 + istanbul-lib-coverage: 3.2.0 + semver: 6.3.0 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-lib-report@3.0.0: + resolution: + { + integrity: sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==, + } + engines: { node: '>=8' } + dependencies: + istanbul-lib-coverage: 3.2.0 + make-dir: 3.1.0 + supports-color: 7.2.0 + dev: true + + /istanbul-lib-source-maps@4.0.1: + resolution: + { + integrity: sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==, + } + engines: { node: '>=10' } + dependencies: + debug: 4.3.4 + istanbul-lib-coverage: 3.2.0 + source-map: 0.6.1 + transitivePeerDependencies: + - supports-color + dev: true + + /istanbul-reports@3.1.5: + resolution: + { + integrity: sha512-nUsEMa9pBt/NOHqbcbeJEgqIlY/K7rVWUX6Lql2orY5e9roQOthbR3vtY4zzf2orPELg80fnxxk9zUyPlgwD1w==, + } + engines: { node: '>=8' } + dependencies: + html-escaper: 2.0.2 + istanbul-lib-report: 3.0.0 + dev: true + + /jest-changed-files@28.1.3: + resolution: + { + integrity: sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + execa: 5.1.1 + p-limit: 3.1.0 + dev: true + + /jest-circus@28.1.3: + resolution: + { + integrity: sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/environment': 28.1.3 + '@jest/expect': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + chalk: 4.1.2 + co: 4.6.0 + dedent: 0.7.0 + is-generator-fn: 2.1.0 + jest-each: 28.1.3 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-runtime: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + p-limit: 3.1.0 + pretty-format: 28.1.3 + slash: 3.0.0 + stack-utils: 2.0.6 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-cli@28.1.3: + resolution: + { + integrity: sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + chalk: 4.1.2 + exit: 0.1.2 + graceful-fs: 4.2.11 + import-local: 3.1.0 + jest-config: 28.1.3(@types/node@20.3.2) + jest-util: 28.1.3 + jest-validate: 28.1.3 + prompts: 2.4.2 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /jest-config@28.1.3(@types/node@20.3.2): + resolution: + { + integrity: sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + peerDependencies: + '@types/node': '*' + ts-node: '>=9.0.0' + peerDependenciesMeta: + '@types/node': + optional: true + ts-node: + optional: true + dependencies: + '@babel/core': 7.22.5 + '@jest/test-sequencer': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + babel-jest: 28.1.3(@babel/core@7.22.5) + chalk: 4.1.2 + ci-info: 3.8.0 + deepmerge: 4.3.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-circus: 28.1.3 + jest-environment-node: 28.1.3 + jest-get-type: 28.0.2 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-runner: 28.1.3 + jest-util: 28.1.3 + jest-validate: 28.1.3 + micromatch: 4.0.5 + parse-json: 5.2.0 + pretty-format: 28.1.3 + slash: 3.0.0 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-diff@28.1.3: + resolution: + { + integrity: sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + chalk: 4.1.2 + diff-sequences: 28.1.1 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: true + + /jest-docblock@28.1.1: + resolution: + { + integrity: sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + detect-newline: 3.1.0 + dev: true + + /jest-each@28.1.3: + resolution: + { + integrity: sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/types': 28.1.3 + chalk: 4.1.2 + jest-get-type: 28.0.2 + jest-util: 28.1.3 + pretty-format: 28.1.3 + dev: true + + /jest-environment-node@28.1.3: + resolution: + { + integrity: sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + jest-mock: 28.1.3 + jest-util: 28.1.3 + dev: true + + /jest-get-type@28.0.2: + resolution: + { + integrity: sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dev: true + + /jest-haste-map@28.1.3: + resolution: + { + integrity: sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/types': 28.1.3 + '@types/graceful-fs': 4.1.6 + '@types/node': 20.3.2 + anymatch: 3.1.3 + fb-watchman: 2.0.2 + graceful-fs: 4.2.11 + jest-regex-util: 28.0.2 + jest-util: 28.1.3 + jest-worker: 28.1.3 + micromatch: 4.0.5 + walker: 1.0.8 + optionalDependencies: + fsevents: 2.3.2 + dev: true + + /jest-leak-detector@28.1.3: + resolution: + { + integrity: sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: true + + /jest-matcher-utils@28.1.3: + resolution: + { + integrity: sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + chalk: 4.1.2 + jest-diff: 28.1.3 + jest-get-type: 28.0.2 + pretty-format: 28.1.3 + dev: true + + /jest-message-util@28.1.3: + resolution: + { + integrity: sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@babel/code-frame': 7.22.5 + '@jest/types': 28.1.3 + '@types/stack-utils': 2.0.1 + chalk: 4.1.2 + graceful-fs: 4.2.11 + micromatch: 4.0.5 + pretty-format: 28.1.3 + slash: 3.0.0 + stack-utils: 2.0.6 + dev: true + + /jest-mock@28.1.3: + resolution: + { + integrity: sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + dev: true + + /jest-pnp-resolver@1.2.3(jest-resolve@28.1.3): + resolution: + { + integrity: sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==, + } + engines: { node: '>=6' } + peerDependencies: + jest-resolve: '*' + peerDependenciesMeta: + jest-resolve: + optional: true + dependencies: + jest-resolve: 28.1.3 + dev: true + + /jest-regex-util@28.0.2: + resolution: + { + integrity: sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dev: true + + /jest-resolve-dependencies@28.1.3: + resolution: + { + integrity: sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + jest-regex-util: 28.0.2 + jest-snapshot: 28.1.3 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-resolve@28.1.3: + resolution: + { + integrity: sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + chalk: 4.1.2 + graceful-fs: 4.2.11 + jest-haste-map: 28.1.3 + jest-pnp-resolver: 1.2.3(jest-resolve@28.1.3) + jest-util: 28.1.3 + jest-validate: 28.1.3 + resolve: 1.22.2 + resolve.exports: 1.1.1 + slash: 3.0.0 + dev: true + + /jest-runner@28.1.3: + resolution: + { + integrity: sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/console': 28.1.3 + '@jest/environment': 28.1.3 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + chalk: 4.1.2 + emittery: 0.10.2 + graceful-fs: 4.2.11 + jest-docblock: 28.1.1 + jest-environment-node: 28.1.3 + jest-haste-map: 28.1.3 + jest-leak-detector: 28.1.3 + jest-message-util: 28.1.3 + jest-resolve: 28.1.3 + jest-runtime: 28.1.3 + jest-util: 28.1.3 + jest-watcher: 28.1.3 + jest-worker: 28.1.3 + p-limit: 3.1.0 + source-map-support: 0.5.13 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-runtime@28.1.3: + resolution: + { + integrity: sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/environment': 28.1.3 + '@jest/fake-timers': 28.1.3 + '@jest/globals': 28.1.3 + '@jest/source-map': 28.1.2 + '@jest/test-result': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + chalk: 4.1.2 + cjs-module-lexer: 1.2.3 + collect-v8-coverage: 1.0.1 + execa: 5.1.1 + glob: 7.2.3 + graceful-fs: 4.2.11 + jest-haste-map: 28.1.3 + jest-message-util: 28.1.3 + jest-mock: 28.1.3 + jest-regex-util: 28.0.2 + jest-resolve: 28.1.3 + jest-snapshot: 28.1.3 + jest-util: 28.1.3 + slash: 3.0.0 + strip-bom: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-snapshot@28.1.3: + resolution: + { + integrity: sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@babel/core': 7.22.5 + '@babel/generator': 7.22.5 + '@babel/plugin-syntax-typescript': 7.22.5(@babel/core@7.22.5) + '@babel/traverse': 7.22.5 + '@babel/types': 7.22.5 + '@jest/expect-utils': 28.1.3 + '@jest/transform': 28.1.3 + '@jest/types': 28.1.3 + '@types/babel__traverse': 7.20.1 + '@types/prettier': 2.7.3 + babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.5) + chalk: 4.1.2 + expect: 28.1.3 + graceful-fs: 4.2.11 + jest-diff: 28.1.3 + jest-get-type: 28.0.2 + jest-haste-map: 28.1.3 + jest-matcher-utils: 28.1.3 + jest-message-util: 28.1.3 + jest-util: 28.1.3 + natural-compare: 1.4.0 + pretty-format: 28.1.3 + semver: 7.5.3 + transitivePeerDependencies: + - supports-color + dev: true + + /jest-util@28.1.3: + resolution: + { + integrity: sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + chalk: 4.1.2 + ci-info: 3.8.0 + graceful-fs: 4.2.11 + picomatch: 2.3.1 + dev: true + + /jest-validate@28.1.3: + resolution: + { + integrity: sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/types': 28.1.3 + camelcase: 6.3.0 + chalk: 4.1.2 + jest-get-type: 28.0.2 + leven: 3.1.0 + pretty-format: 28.1.3 + dev: true + + /jest-watcher@28.1.3: + resolution: + { + integrity: sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/test-result': 28.1.3 + '@jest/types': 28.1.3 + '@types/node': 20.3.2 + ansi-escapes: 4.3.2 + chalk: 4.1.2 + emittery: 0.10.2 + jest-util: 28.1.3 + string-length: 4.0.2 + dev: true + + /jest-worker@28.1.3: + resolution: + { + integrity: sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@types/node': 20.3.2 + merge-stream: 2.0.0 + supports-color: 8.1.1 + dev: true + + /jest@28.1.1: + resolution: + { + integrity: sha512-qw9YHBnjt6TCbIDMPMpJZqf9E12rh6869iZaN08/vpOGgHJSAaLLUn6H8W3IAEuy34Ls3rct064mZLETkxJ2XA==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + hasBin: true + peerDependencies: + node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 + peerDependenciesMeta: + node-notifier: + optional: true + dependencies: + '@jest/core': 28.1.3 + '@jest/types': 28.1.3 + import-local: 3.1.0 + jest-cli: 28.1.3 + transitivePeerDependencies: + - '@types/node' + - supports-color + - ts-node + dev: true + + /js-tokens@4.0.0: + resolution: + { + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, + } + dev: true + + /js-yaml@3.14.1: + resolution: + { + integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==, + } + hasBin: true + dependencies: + argparse: 1.0.10 + esprima: 4.0.1 + dev: true + + /js-yaml@4.1.0: + resolution: + { + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, + } + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /jsesc@2.5.2: + resolution: + { + integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==, + } + engines: { node: '>=4' } + hasBin: true + dev: true + + /json-parse-even-better-errors@2.3.1: + resolution: + { + integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==, + } + dev: true + + /json-schema-traverse@0.4.1: + resolution: + { + integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==, + } + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: + { + integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==, + } + dev: true + + /json5@1.0.2: + resolution: + { + integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==, + } + hasBin: true + dependencies: + minimist: 1.2.8 + dev: true + + /json5@2.2.3: + resolution: + { + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, + } + engines: { node: '>=6' } + hasBin: true + dev: true + + /kleur@3.0.3: + resolution: + { + integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, + } + engines: { node: '>=6' } + dev: true + + /leven@3.1.0: + resolution: + { + integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==, + } + engines: { node: '>=6' } + dev: true + + /levn@0.4.1: + resolution: + { + integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==, + } + engines: { node: '>= 0.8.0' } + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /lines-and-columns@1.2.4: + resolution: + { + integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==, + } + dev: true + + /locate-path@5.0.0: + resolution: + { + integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==, + } + engines: { node: '>=8' } + dependencies: + p-locate: 4.1.0 + dev: true + + /locate-path@6.0.0: + resolution: + { + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, + } + engines: { node: '>=10' } + dependencies: + p-locate: 5.0.0 + dev: true + + /lodash.merge@4.6.2: + resolution: + { + integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==, + } + dev: true + + /lru-cache@5.1.1: + resolution: + { + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, + } + dependencies: + yallist: 3.1.1 + dev: true + + /lru-cache@6.0.0: + resolution: + { + integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==, + } + engines: { node: '>=10' } + dependencies: + yallist: 4.0.0 + dev: true + + /make-dir@3.1.0: + resolution: + { + integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==, + } + engines: { node: '>=8' } + dependencies: + semver: 6.3.0 + dev: true + + /makeerror@1.0.12: + resolution: + { + integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==, + } + dependencies: + tmpl: 1.0.5 + dev: true + + /merge-stream@2.0.0: + resolution: + { + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, + } + dev: true + + /merge2@1.4.1: + resolution: + { + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, + } + engines: { node: '>= 8' } + dev: true + + /micromatch@4.0.5: + resolution: + { + integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==, + } + engines: { node: '>=8.6' } + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mimic-fn@2.1.0: + resolution: + { + integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==, + } + engines: { node: '>=6' } + dev: true + + /minimatch@3.1.2: + resolution: + { + integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, + } + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimist@1.2.8: + resolution: + { + integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==, + } + dev: true + + /ms@2.0.0: + resolution: + { + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, + } + dev: true + + /ms@2.1.2: + resolution: + { + integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==, + } + dev: true + + /natural-compare@1.4.0: + resolution: + { + integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==, + } + dev: true + + /node-int64@0.4.0: + resolution: + { + integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==, + } + dev: true + + /node-releases@2.0.12: + resolution: + { + integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==, + } + dev: true + + /normalize-path@3.0.0: + resolution: + { + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, + } + engines: { node: '>=0.10.0' } + dev: true + + /npm-run-path@4.0.1: + resolution: + { + integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==, + } + engines: { node: '>=8' } + dependencies: + path-key: 3.1.1 + dev: true + + /object-inspect@1.12.3: + resolution: + { + integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==, + } + dev: true + + /object-keys@1.1.1: + resolution: + { + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, + } + engines: { node: '>= 0.4' } + dev: true + + /object.assign@4.1.4: + resolution: + { + integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + has-symbols: 1.0.3 + object-keys: 1.1.1 + dev: true + + /object.values@1.1.6: + resolution: + { + integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /once@1.4.0: + resolution: + { + integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, + } + dependencies: + wrappy: 1.0.2 + dev: true + + /onetime@5.1.2: + resolution: + { + integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==, + } + engines: { node: '>=6' } + dependencies: + mimic-fn: 2.1.0 + dev: true + + /optionator@0.9.1: + resolution: + { + integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==, + } + engines: { node: '>= 0.8.0' } + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.3 + dev: true + + /p-limit@2.3.0: + resolution: + { + integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==, + } + engines: { node: '>=6' } + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit@3.1.0: + resolution: + { + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, + } + engines: { node: '>=10' } + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate@4.1.0: + resolution: + { + integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==, + } + engines: { node: '>=8' } + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate@5.0.0: + resolution: + { + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, + } + engines: { node: '>=10' } + dependencies: + p-limit: 3.1.0 + dev: true + + /p-try@2.2.0: + resolution: + { + integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==, + } + engines: { node: '>=6' } + dev: true + + /parent-module@1.0.1: + resolution: + { + integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==, + } + engines: { node: '>=6' } + dependencies: + callsites: 3.1.0 + dev: true + + /parse-json@5.2.0: + resolution: + { + integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==, + } + engines: { node: '>=8' } + dependencies: + '@babel/code-frame': 7.22.5 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /path-exists@4.0.0: + resolution: + { + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, + } + engines: { node: '>=8' } + dev: true + + /path-is-absolute@1.0.1: + resolution: + { + integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, + } + engines: { node: '>=0.10.0' } + dev: true + + /path-key@3.1.1: + resolution: + { + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, + } + engines: { node: '>=8' } + dev: true + + /path-parse@1.0.7: + resolution: + { + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, + } + dev: true + + /path-type@4.0.0: + resolution: + { + integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==, + } + engines: { node: '>=8' } + dev: true + + /picocolors@1.0.0: + resolution: + { + integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==, + } + dev: true + + /picomatch@2.3.1: + resolution: + { + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, + } + engines: { node: '>=8.6' } + dev: true + + /pirates@4.0.6: + resolution: + { + integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==, + } + engines: { node: '>= 6' } + dev: true + + /pkg-dir@4.2.0: + resolution: + { + integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==, + } + engines: { node: '>=8' } + dependencies: + find-up: 4.1.0 + dev: true + + /prelude-ls@1.2.1: + resolution: + { + integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==, + } + engines: { node: '>= 0.8.0' } + dev: true + + /prettier-linter-helpers@1.0.0: + resolution: + { + integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==, + } + engines: { node: '>=6.0.0' } + dependencies: + fast-diff: 1.3.0 + dev: true + + /prettier@2.8.8: + resolution: + { + integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==, + } + engines: { node: '>=10.13.0' } + hasBin: true + dev: true + + /pretty-format@28.1.3: + resolution: + { + integrity: sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==, + } + engines: { node: ^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0 } + dependencies: + '@jest/schemas': 28.1.3 + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 18.2.0 + dev: true + + /prompts@2.4.2: + resolution: + { + integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, + } + engines: { node: '>= 6' } + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + dev: true + + /punycode@2.3.0: + resolution: + { + integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==, + } + engines: { node: '>=6' } + dev: true + + /queue-microtask@1.2.3: + resolution: + { + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, + } + dev: true + + /react-is@18.2.0: + resolution: + { + integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==, + } + dev: true + + /regexp.prototype.flags@1.5.0: + resolution: + { + integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + functions-have-names: 1.2.3 + dev: true + + /regexpp@3.2.0: + resolution: + { + integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==, + } + engines: { node: '>=8' } + dev: true + + /require-directory@2.1.1: + resolution: + { + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, + } + engines: { node: '>=0.10.0' } + dev: true + + /resolve-cwd@3.0.0: + resolution: + { + integrity: sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==, + } + engines: { node: '>=8' } + dependencies: + resolve-from: 5.0.0 + dev: true + + /resolve-from@4.0.0: + resolution: + { + integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==, + } + engines: { node: '>=4' } + dev: true + + /resolve-from@5.0.0: + resolution: + { + integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==, + } + engines: { node: '>=8' } + dev: true + + /resolve.exports@1.1.1: + resolution: + { + integrity: sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==, + } + engines: { node: '>=10' } + dev: true + + /resolve@1.22.2: + resolution: + { + integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==, + } + hasBin: true + dependencies: + is-core-module: 2.12.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /reusify@1.0.4: + resolution: + { + integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==, + } + engines: { iojs: '>=1.0.0', node: '>=0.10.0' } + dev: true + + /rimraf@3.0.2: + resolution: + { + integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, + } + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /run-parallel@1.2.0: + resolution: + { + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, + } + dependencies: + queue-microtask: 1.2.3 + dev: true + + /safe-regex-test@1.0.0: + resolution: + { + integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==, + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + is-regex: 1.1.4 + dev: true + + /semver@6.3.0: + resolution: + { + integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==, + } + hasBin: true + dev: true + + /semver@7.5.3: + resolution: + { + integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==, + } + engines: { node: '>=10' } + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /shebang-command@2.0.0: + resolution: + { + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, + } + engines: { node: '>=8' } + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex@3.0.0: + resolution: + { + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, + } + engines: { node: '>=8' } + dev: true + + /side-channel@1.0.4: + resolution: + { + integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==, + } + dependencies: + call-bind: 1.0.2 + get-intrinsic: 1.2.1 + object-inspect: 1.12.3 + dev: true + + /signal-exit@3.0.7: + resolution: + { + integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==, + } + dev: true + + /sisteransi@1.0.5: + resolution: + { + integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, + } + dev: true + + /slash@3.0.0: + resolution: + { + integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==, + } + engines: { node: '>=8' } + dev: true + + /source-map-support@0.5.13: + resolution: + { + integrity: sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==, + } + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map-support@0.5.21: + resolution: + { + integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==, + } + dependencies: + buffer-from: 1.1.2 + source-map: 0.6.1 + dev: true + + /source-map@0.6.1: + resolution: + { + integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==, + } + engines: { node: '>=0.10.0' } + dev: true + + /sprintf-js@1.0.3: + resolution: + { + integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==, + } + dev: true + + /stack-utils@2.0.6: + resolution: + { + integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==, + } + engines: { node: '>=10' } + dependencies: + escape-string-regexp: 2.0.0 + dev: true + + /string-length@4.0.2: + resolution: + { + integrity: sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==, + } + engines: { node: '>=10' } + dependencies: + char-regex: 1.0.2 + strip-ansi: 6.0.1 + dev: true + + /string-width@4.2.3: + resolution: + { + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, + } + engines: { node: '>=8' } + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string.prototype.trim@1.2.7: + resolution: + { + integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==, + } + engines: { node: '>= 0.4' } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /string.prototype.trimend@1.0.6: + resolution: + { + integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /string.prototype.trimstart@1.0.6: + resolution: + { + integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==, + } + dependencies: + call-bind: 1.0.2 + define-properties: 1.2.0 + es-abstract: 1.21.2 + dev: true + + /strip-ansi@6.0.1: + resolution: + { + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, + } + engines: { node: '>=8' } + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-bom@3.0.0: + resolution: + { + integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==, + } + engines: { node: '>=4' } + dev: true + + /strip-bom@4.0.0: + resolution: + { + integrity: sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==, + } + engines: { node: '>=8' } + dev: true + + /strip-final-newline@2.0.0: + resolution: + { + integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==, + } + engines: { node: '>=6' } + dev: true + + /strip-json-comments@3.1.1: + resolution: + { + integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==, + } + engines: { node: '>=8' } + dev: true + + /supports-color@5.5.0: + resolution: + { + integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==, + } + engines: { node: '>=4' } + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color@7.2.0: + resolution: + { + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, + } + engines: { node: '>=8' } + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-color@8.1.1: + resolution: + { + integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, + } + engines: { node: '>=10' } + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-hyperlinks@2.3.0: + resolution: + { + integrity: sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==, + } + engines: { node: '>=8' } + dependencies: + has-flag: 4.0.0 + supports-color: 7.2.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: + { + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, + } + engines: { node: '>= 0.4' } + dev: true + + /terminal-link@2.1.1: + resolution: + { + integrity: sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==, + } + engines: { node: '>=8' } + dependencies: + ansi-escapes: 4.3.2 + supports-hyperlinks: 2.3.0 + dev: true + + /test-exclude@6.0.0: + resolution: + { + integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==, + } + engines: { node: '>=8' } + dependencies: + '@istanbuljs/schema': 0.1.3 + glob: 7.2.3 + minimatch: 3.1.2 + dev: true + + /text-table@0.2.0: + resolution: + { + integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==, + } + dev: true + + /tmpl@1.0.5: + resolution: + { + integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==, + } + dev: true + + /to-fast-properties@2.0.0: + resolution: + { + integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==, + } + engines: { node: '>=4' } + dev: true + + /to-regex-range@5.0.1: + resolution: + { + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, + } + engines: { node: '>=8.0' } + dependencies: + is-number: 7.0.0 + dev: true + + /tsconfig-paths@3.14.2: + resolution: + { + integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==, + } + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + dev: true + + /tslib@1.14.1: + resolution: + { + integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==, + } + dev: true + + /tslib@2.6.0: + resolution: + { + integrity: sha512-7At1WUettjcSRHXCyYtTselblcHl9PJFFVKiCAy/bY97+BPZXSQ2wbq0P9s8tK2G7dFQfNnlJnPAiArVBVBsfA==, + } + dev: true + + /tsutils@3.21.0(typescript@4.7.4): + resolution: + { + integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==, + } + engines: { node: '>= 6' } + peerDependencies: + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' + dependencies: + tslib: 1.14.1 + typescript: 4.7.4 + dev: true + + /type-check@0.4.0: + resolution: + { + integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==, + } + engines: { node: '>= 0.8.0' } + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-detect@4.0.8: + resolution: + { + integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==, + } + engines: { node: '>=4' } + dev: true + + /type-fest@0.20.2: + resolution: + { + integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==, + } + engines: { node: '>=10' } + dev: true + + /type-fest@0.21.3: + resolution: + { + integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==, + } + engines: { node: '>=10' } + dev: true + + /typed-array-length@1.0.4: + resolution: + { + integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==, + } + dependencies: + call-bind: 1.0.2 + for-each: 0.3.3 + is-typed-array: 1.1.10 + dev: true + + /typescript@4.7.4: + resolution: + { + integrity: sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==, + } + engines: { node: '>=4.2.0' } + hasBin: true + dev: true + + /unbox-primitive@1.0.2: + resolution: + { + integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==, + } + dependencies: + call-bind: 1.0.2 + has-bigints: 1.0.2 + has-symbols: 1.0.3 + which-boxed-primitive: 1.0.2 + dev: true + + /update-browserslist-db@1.0.11(browserslist@4.21.9): + resolution: + { + integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==, + } + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.21.9 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /uri-js@4.4.1: + resolution: + { + integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==, + } + dependencies: + punycode: 2.3.0 + dev: true + + /v8-compile-cache@2.3.0: + resolution: + { + integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==, + } + dev: true + + /v8-to-istanbul@9.1.0: + resolution: + { + integrity: sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==, + } + engines: { node: '>=10.12.0' } + dependencies: + '@jridgewell/trace-mapping': 0.3.18 + '@types/istanbul-lib-coverage': 2.0.4 + convert-source-map: 1.9.0 + dev: true + + /walker@1.0.8: + resolution: + { + integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==, + } + dependencies: + makeerror: 1.0.12 + dev: true + + /which-boxed-primitive@1.0.2: + resolution: + { + integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==, + } + dependencies: + is-bigint: 1.0.4 + is-boolean-object: 1.1.2 + is-number-object: 1.0.7 + is-string: 1.0.7 + is-symbol: 1.0.4 + dev: true + + /which-typed-array@1.1.9: + resolution: + { + integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==, + } + engines: { node: '>= 0.4' } + dependencies: + available-typed-arrays: 1.0.5 + call-bind: 1.0.2 + for-each: 0.3.3 + gopd: 1.0.1 + has-tostringtag: 1.0.0 + is-typed-array: 1.1.10 + dev: true + + /which@2.0.2: + resolution: + { + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, + } + engines: { node: '>= 8' } + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /word-wrap@1.2.3: + resolution: + { + integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==, + } + engines: { node: '>=0.10.0' } + dev: true + + /wrap-ansi@7.0.0: + resolution: + { + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, + } + engines: { node: '>=10' } + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrappy@1.0.2: + resolution: + { + integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, + } + dev: true + + /write-file-atomic@4.0.2: + resolution: + { + integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==, + } + engines: { node: ^12.13.0 || ^14.15.0 || >=16.0.0 } + dependencies: + imurmurhash: 0.1.4 + signal-exit: 3.0.7 + dev: true + + /y18n@5.0.8: + resolution: + { + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, + } + engines: { node: '>=10' } + dev: true + + /yallist@3.1.1: + resolution: + { + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, + } + dev: true + + /yallist@4.0.0: + resolution: + { + integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==, + } + dev: true + + /yargs-parser@21.1.1: + resolution: + { + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, + } + engines: { node: '>=12' } + dev: true + + /yargs@17.7.2: + resolution: + { + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, + } + engines: { node: '>=12' } + dependencies: + cliui: 8.0.1 + escalade: 3.1.1 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + dev: true + + /yocto-queue@0.1.0: + resolution: + { + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, + } + engines: { node: '>=10' } + dev: true diff --git a/hogvm/typescript/src/__tests__/bytecode.test.ts b/hogvm/typescript/src/__tests__/bytecode.test.ts new file mode 100644 index 0000000000000..a063db0219ae6 --- /dev/null +++ b/hogvm/typescript/src/__tests__/bytecode.test.ts @@ -0,0 +1,93 @@ +import { executeHogQLBytecode, Operation as op } from '../bytecode' + +describe('HogQL Bytecode', () => { + test('execution results', () => { + const fields = { properties: { foo: 'bar' } } + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, op.PLUS], fields)).toBe(3) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, op.MINUS], fields)).toBe(-1) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 3, op.MULTIPLY], fields)).toBe(6) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 3, op.DIVIDE], fields)).toBe(1.5) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 3, op.MOD], fields)).toBe(1) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, op.AND, 2], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.INTEGER, 0, op.INTEGER, 1, op.OR, 2], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.INTEGER, 0, op.INTEGER, 1, op.AND, 2], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.INTEGER, 1, op.INTEGER, 0, op.INTEGER, 1, op.OR, 3], fields)).toBe(true) + expect( + executeHogQLBytecode(['_h', op.INTEGER, 0, op.INTEGER, 1, op.AND, 2, op.INTEGER, 1, op.AND, 2], fields) + ).toBe(false) + expect( + executeHogQLBytecode( + ['_h', op.INTEGER, 2, op.INTEGER, 1, op.OR, 2, op.INTEGER, 2, op.INTEGER, 1, op.OR, 2, op.AND, 2], + fields + ) + ).toBe(true) + expect(executeHogQLBytecode(['_h', op.TRUE, op.NOT], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, op.EQ], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, op.NOT_EQ], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, op.LT], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, op.LT_EQ], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, op.GT], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, op.GT_EQ], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.STRING, 'b', op.STRING, 'a', op.LIKE], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.STRING, '%a%', op.STRING, 'baa', op.LIKE], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, '%x%', op.STRING, 'baa', op.LIKE], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.STRING, '%A%', op.STRING, 'baa', op.ILIKE], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, '%C%', op.STRING, 'baa', op.ILIKE], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.STRING, 'b', op.STRING, 'a', op.NOT_LIKE], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, 'b', op.STRING, 'a', op.NOT_ILIKE], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, 'car', op.STRING, 'a', op.IN], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, 'car', op.STRING, 'a', op.NOT_IN], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.STRING, '.*', op.STRING, 'a', op.REGEX], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, 'b', op.STRING, 'a', op.REGEX], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.STRING, '.*', op.STRING, 'a', op.NOT_REGEX], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.STRING, 'b', op.STRING, 'a', op.NOT_REGEX], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, 'bla', op.STRING, 'properties', op.FIELD, 2], fields)).toBe(null) + expect(executeHogQLBytecode(['_h', op.STRING, 'foo', op.STRING, 'properties', op.FIELD, 2], fields)).toBe('bar') + expect(executeHogQLBytecode(['_h', op.STRING, 'another', op.STRING, 'arg', op.CALL, 'concat', 2], fields)).toBe( + 'arganother' + ) + expect(executeHogQLBytecode(['_h', op.NULL, op.INTEGER, 1, op.CALL, 'concat', 2], fields)).toBe('1') + expect(executeHogQLBytecode(['_h', op.FALSE, op.TRUE, op.CALL, 'concat', 2], fields)).toBe('truefalse') + expect(executeHogQLBytecode(['_h', op.STRING, 'e.*', op.STRING, 'test', op.CALL, 'match', 2], fields)).toBe( + true + ) + expect(executeHogQLBytecode(['_h', op.STRING, '^e.*', op.STRING, 'test', op.CALL, 'match', 2], fields)).toBe( + false + ) + expect(executeHogQLBytecode(['_h', op.STRING, 'x.*', op.STRING, 'test', op.CALL, 'match', 2], fields)).toBe( + false + ) + expect(executeHogQLBytecode(['_h', op.INTEGER, 1, op.CALL, 'toString', 1], fields)).toBe('1') + expect(executeHogQLBytecode(['_h', op.FLOAT, 1.5, op.CALL, 'toString', 1], fields)).toBe('1.5') + expect(executeHogQLBytecode(['_h', op.TRUE, op.CALL, 'toString', 1], fields)).toBe('true') + expect(executeHogQLBytecode(['_h', op.NULL, op.CALL, 'toString', 1], fields)).toBe('null') + expect(executeHogQLBytecode(['_h', op.STRING, 'string', op.CALL, 'toString', 1], fields)).toBe('string') + expect(executeHogQLBytecode(['_h', op.STRING, '1', op.CALL, 'toInt', 1], fields)).toBe(1) + expect(executeHogQLBytecode(['_h', op.STRING, 'bla', op.CALL, 'toInt', 1], fields)).toBe(null) + expect(executeHogQLBytecode(['_h', op.STRING, '1.2', op.CALL, 'toFloat', 1], fields)).toBe(1.2) + expect(executeHogQLBytecode(['_h', op.STRING, 'bla', op.CALL, 'toFloat', 1], fields)).toBe(null) + expect(executeHogQLBytecode(['_h', op.STRING, 'asd', op.CALL, 'toUUID', 1], fields)).toBe('asd') + + expect(executeHogQLBytecode(['_h', op.NULL, op.INTEGER, 1, op.EQ], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.NULL, op.INTEGER, 1, op.NOT_EQ], fields)).toBe(true) + }) + + test('error handling', () => { + const fields = { properties: { foo: 'bar' } } + expect(() => executeHogQLBytecode([], fields)).toThrowError("Invalid HogQL bytecode, must start with '_h'") + expect(() => executeHogQLBytecode(['_h'], fields)).toThrowError('Invalid HogQL bytecode, stack is empty') + expect(() => executeHogQLBytecode(['_h', op.INTEGER, 2, op.INTEGER, 1, 'InvalidOp'], fields)).toThrowError( + 'Unexpected node while running bytecode: InvalidOp' + ) + expect(() => + executeHogQLBytecode(['_h', op.STRING, 'another', op.STRING, 'arg', op.CALL, 'invalidFunc', 2], fields) + ).toThrowError('Unsupported function call: invalidFunc') + expect(() => executeHogQLBytecode(['_h', op.INTEGER], fields)).toThrowError('Unexpected end of bytecode') + expect(() => executeHogQLBytecode(['_h', op.CALL, 'match', 1], fields)).toThrowError( + 'Invalid HogQL bytecode, stack is empty' + ) + expect(() => executeHogQLBytecode(['_h', op.TRUE, op.TRUE, op.NOT], fields)).toThrowError( + 'Invalid bytecode. More than one value left on stack' + ) + }) +}) diff --git a/hogvm/typescript/src/bytecode.ts b/hogvm/typescript/src/bytecode.ts new file mode 100644 index 0000000000000..983be183f5646 --- /dev/null +++ b/hogvm/typescript/src/bytecode.ts @@ -0,0 +1,217 @@ +export const enum Operation { + FIELD = 1, + CALL = 2, + AND = 3, + OR = 4, + NOT = 5, + PLUS = 6, + MINUS = 7, + MULTIPLY = 8, + DIVIDE = 9, + MOD = 10, + EQ = 11, + NOT_EQ = 12, + GT = 13, + GT_EQ = 14, + LT = 15, + LT_EQ = 16, + LIKE = 17, + ILIKE = 18, + NOT_LIKE = 19, + NOT_ILIKE = 20, + IN = 21, + NOT_IN = 22, + REGEX = 23, + NOT_REGEX = 24, + TRUE = 25, + FALSE = 26, + NULL = 27, + STRING = 28, + INTEGER = 29, + FLOAT = 30, +} + +function like(string: string, pattern: string, caseInsensitive = false): boolean { + pattern = String(pattern) + .replaceAll(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&') + .replaceAll('%', '.*') + return new RegExp(pattern, caseInsensitive ? 'i' : undefined).test(string) +} + +function getNestedValue(obj: any, chain: any[]): any { + for (const key of chain) { + if (typeof key === 'number') { + obj = obj[key] + } else { + obj = obj[key] ?? null + } + } + return obj +} + +function toConcatArg(arg: any): string { + return arg === null ? '' : String(arg) +} + +export function executeHogQLBytecode(bytecode: any[], fields: Record): any { + let temp: any + const stack: any[] = [] + + if (bytecode.length === 0 || bytecode[0] !== '_h') { + throw new Error("Invalid HogQL bytecode, must start with '_h'") + } + function popStack(): any { + if (stack.length === 0) { + throw new Error('Invalid HogQL bytecode, stack is empty') + } + return stack.pop() + } + + let i = 1 + function next(): any { + if (i >= bytecode.length - 1) { + throw new Error('Unexpected end of bytecode') + } + return bytecode[++i] + } + + for (; i < bytecode.length; i++) { + switch (bytecode[i]) { + case Operation.STRING: + stack.push(next()) + break + case Operation.FLOAT: + stack.push(next()) + break + case Operation.INTEGER: + stack.push(next()) + break + case Operation.TRUE: + stack.push(true) + break + case Operation.FALSE: + stack.push(false) + break + case Operation.NULL: + stack.push(null) + break + case Operation.NOT: + stack.push(!popStack()) + break + case Operation.AND: + stack.push( + Array(next()) + .fill(null) + .map(() => popStack()) + .every(Boolean) + ) + break + case Operation.OR: + stack.push( + Array(next()) + .fill(null) + .map(() => popStack()) + .some(Boolean) + ) + break + case Operation.PLUS: + stack.push(Number(popStack()) + Number(popStack())) + break + case Operation.MINUS: + stack.push(Number(popStack()) - Number(popStack())) + break + case Operation.DIVIDE: + stack.push(Number(popStack()) / Number(popStack())) + break + case Operation.MULTIPLY: + stack.push(Number(popStack()) * Number(popStack())) + break + case Operation.MOD: + stack.push(Number(popStack()) % Number(popStack())) + break + case Operation.EQ: + stack.push(popStack() === popStack()) + break + case Operation.NOT_EQ: + stack.push(popStack() !== popStack()) + break + case Operation.GT: + stack.push(popStack() > popStack()) + break + case Operation.GT_EQ: + stack.push(popStack() >= popStack()) + break + case Operation.LT: + stack.push(popStack() < popStack()) + break + case Operation.LT_EQ: + stack.push(popStack() <= popStack()) + break + case Operation.LIKE: + stack.push(like(popStack(), popStack())) + break + case Operation.ILIKE: + stack.push(like(popStack(), popStack(), true)) + break + case Operation.NOT_LIKE: + stack.push(!like(popStack(), popStack())) + break + case Operation.NOT_ILIKE: + stack.push(!like(popStack(), popStack(), true)) + break + case Operation.IN: + temp = popStack() + stack.push(popStack().includes(temp)) + break + case Operation.NOT_IN: + temp = popStack() + stack.push(!popStack().includes(temp)) + break + case Operation.REGEX: + temp = popStack() + stack.push(new RegExp(popStack()).test(temp)) + break + case Operation.NOT_REGEX: + temp = popStack() + stack.push(!new RegExp(popStack()).test(temp)) + break + case Operation.FIELD: + const count = next() + const chain = [] + for (let i = 0; i < count; i++) { + chain.push(popStack()) + } + stack.push(getNestedValue(fields, chain)) + break + case Operation.CALL: + const name = next() + const args = Array(next()) + .fill(null) + .map(() => popStack()) + if (name === 'concat') { + stack.push(args.map((arg) => toConcatArg(arg)).join('')) + } else if (name === 'match') { + stack.push(new RegExp(args[1]).test(args[0])) + } else if (name == 'toString' || name == 'toUUID') { + stack.push(String(args[0] ?? null)) + } else if (name == 'toInt') { + const value = parseInt(args[0]) + stack.push(isNaN(value) ? null : value) + } else if (name == 'toFloat') { + const value = parseFloat(args[0]) + stack.push(isNaN(value) ? null : value) + } else { + throw new Error(`Unsupported function call: ${name}`) + } + break + default: + throw new Error(`Unexpected node while running bytecode: ${bytecode[i]}`) + } + } + + if (stack.length > 1) { + throw new Error('Invalid bytecode. More than one value left on stack') + } + + return popStack() ?? null +} diff --git a/hogvm/typescript/tsconfig.build.json b/hogvm/typescript/tsconfig.build.json new file mode 100644 index 0000000000000..19534cc6ee50f --- /dev/null +++ b/hogvm/typescript/tsconfig.build.json @@ -0,0 +1,4 @@ +{ + "extends": "./tsconfig.json", + "exclude": ["src/**/*.test.ts"] +} diff --git a/hogvm/typescript/tsconfig.json b/hogvm/typescript/tsconfig.json new file mode 100644 index 0000000000000..f390c8aee56f1 --- /dev/null +++ b/hogvm/typescript/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "module": "CommonJS", + "target": "ESNext", + "declaration": true, + "removeComments": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "moduleResolution": "node", + "esModuleInterop": true, + "allowJs": true, + "sourceMap": true, + "baseUrl": "src/", + "rootDir": "src/", + "outDir": "dist/", + "types": ["node", "jest"], + "resolveJsonModule": true, + "strict": true, + "noImplicitAny": true, + "useUnknownInCatchVariables": false + }, + "include": ["src"], + "exclude": ["node_modules", "dist", "bin"] +} diff --git a/posthog/hogql/bytecode.py b/posthog/hogql/bytecode.py new file mode 100644 index 0000000000000..921146aa05520 --- /dev/null +++ b/posthog/hogql/bytecode.py @@ -0,0 +1,107 @@ +from typing import List, Any + +from posthog.hogql import ast +from posthog.hogql.errors import NotImplementedException +from posthog.hogql.visitor import Visitor +from hogvm.python.operation import Operation, HOGQL_BYTECODE_IDENTIFIER, SUPPORTED_FUNCTIONS + +COMPARE_OPERATIONS = { + ast.CompareOperationOp.Eq: Operation.EQ, + ast.CompareOperationOp.NotEq: Operation.NOT_EQ, + ast.CompareOperationOp.Gt: Operation.GT, + ast.CompareOperationOp.GtEq: Operation.GT_EQ, + ast.CompareOperationOp.Lt: Operation.LT, + ast.CompareOperationOp.LtEq: Operation.LT_EQ, + ast.CompareOperationOp.Like: Operation.LIKE, + ast.CompareOperationOp.ILike: Operation.ILIKE, + ast.CompareOperationOp.NotLike: Operation.NOT_LIKE, + ast.CompareOperationOp.NotILike: Operation.NOT_ILIKE, + ast.CompareOperationOp.In: Operation.IN, + ast.CompareOperationOp.NotIn: Operation.NOT_IN, + ast.CompareOperationOp.Regex: Operation.REGEX, + ast.CompareOperationOp.NotRegex: Operation.NOT_REGEX, +} + +ARITHMETIC_OPERATIONS = { + ast.ArithmeticOperationOp.Add: Operation.PLUS, + ast.ArithmeticOperationOp.Sub: Operation.MINUS, + ast.ArithmeticOperationOp.Mult: Operation.MULTIPLY, + ast.ArithmeticOperationOp.Div: Operation.DIVIDE, + ast.ArithmeticOperationOp.Mod: Operation.MOD, +} + + +def to_bytecode(expr: str) -> List[any]: + from posthog.hogql.parser import parse_expr + + return create_bytecode(parse_expr(expr)) + + +def create_bytecode(expr: ast.Expr) -> List[Any]: + bytecode = [HOGQL_BYTECODE_IDENTIFIER] + bytecode.extend(BytecodeBuilder().visit(expr)) + return bytecode + + +class BytecodeBuilder(Visitor): + def visit_and(self, node: ast.And): + response = [] + for expr in reversed(node.exprs): + response.extend(self.visit(expr)) + response.append(Operation.AND) + response.append(len(node.exprs)) + return response + + def visit_or(self, node: ast.Or): + response = [] + for expr in reversed(node.exprs): + response.extend(self.visit(expr)) + response.append(Operation.OR) + response.append(len(node.exprs)) + return response + + def visit_not(self, node: ast.Not): + return [*self.visit(node.expr), Operation.NOT] + + def visit_compare_operation(self, node: ast.CompareOperation): + return [*self.visit(node.right), *self.visit(node.left), COMPARE_OPERATIONS[node.op]] + + def visit_arithmetic_operation(self, node: ast.ArithmeticOperation): + return [*self.visit(node.right), *self.visit(node.left), ARITHMETIC_OPERATIONS[node.op]] + + def visit_field(self, node: ast.Field): + chain = [] + for element in reversed(node.chain): + chain.extend([Operation.STRING, element]) + return [*chain, Operation.FIELD, len(node.chain)] + + def visit_tuple_access(self, node: ast.TupleAccess): + return [Operation.INTEGER, node.index, Operation.FIELD, 1] + + def visit_array_access(self, node: ast.ArrayAccess): + return [*self.visit(node.property), Operation.FIELD, 1] + + def visit_constant(self, node: ast.Constant): + if node.value is True: + return [Operation.TRUE] + elif node.value is False: + return [Operation.FALSE] + elif node.value is None: + return [Operation.NULL] + elif isinstance(node.value, int): + return [Operation.INTEGER, node.value] + elif isinstance(node.value, float): + return [Operation.FLOAT, node.value] + elif isinstance(node.value, str): + return [Operation.STRING, node.value] + else: + raise NotImplementedException(f"Unsupported constant type: {type(node.value)}") + + def visit_call(self, node: ast.Call): + if node.name not in SUPPORTED_FUNCTIONS: + raise NotImplementedException(f"Unsupported function: {node.name}") + response = [] + for expr in reversed(node.args): + response.extend(self.visit(expr)) + response.extend([Operation.CALL, node.name, len(node.args)]) + return response diff --git a/posthog/hogql/test/test_bytecode.py b/posthog/hogql/test/test_bytecode.py new file mode 100644 index 0000000000000..49260a7289ac6 --- /dev/null +++ b/posthog/hogql/test/test_bytecode.py @@ -0,0 +1,60 @@ +from posthog.hogql.bytecode import to_bytecode +from hogvm.python.operation import Operation as op, HOGQL_BYTECODE_IDENTIFIER as _H +from posthog.hogql.errors import NotImplementedException +from posthog.test.base import BaseTest + + +class TestBytecode(BaseTest): + def test_bytecode_create(self): + self.assertEqual(to_bytecode("1 + 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.PLUS]) + self.assertEqual(to_bytecode("1 and 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.AND, 2]) + self.assertEqual(to_bytecode("1 or 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.OR, 2]) + self.assertEqual( + to_bytecode("1 or (2 and 1) or 2"), + [_H, op.INTEGER, 2, op.INTEGER, 1, op.INTEGER, 2, op.AND, 2, op.INTEGER, 1, op.OR, 3], + ) + self.assertEqual( + to_bytecode("(1 or 2) and (1 or 2)"), + [_H, op.INTEGER, 2, op.INTEGER, 1, op.OR, 2, op.INTEGER, 2, op.INTEGER, 1, op.OR, 2, op.AND, 2], + ) + self.assertEqual(to_bytecode("not true"), [_H, op.TRUE, op.NOT]) + self.assertEqual(to_bytecode("true"), [_H, op.TRUE]) + self.assertEqual(to_bytecode("false"), [_H, op.FALSE]) + self.assertEqual(to_bytecode("null"), [_H, op.NULL]) + self.assertEqual(to_bytecode("3.14"), [_H, op.FLOAT, 3.14]) + self.assertEqual(to_bytecode("properties.bla"), [_H, op.STRING, "bla", op.STRING, "properties", op.FIELD, 2]) + self.assertEqual( + to_bytecode("concat('arg', 'another')"), [_H, op.STRING, "another", op.STRING, "arg", op.CALL, "concat", 2] + ) + self.assertEqual(to_bytecode("1 = 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.EQ]) + self.assertEqual(to_bytecode("1 == 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.EQ]) + self.assertEqual(to_bytecode("1 != 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.NOT_EQ]) + self.assertEqual(to_bytecode("1 < 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.LT]) + self.assertEqual(to_bytecode("1 <= 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.LT_EQ]) + self.assertEqual(to_bytecode("1 > 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.GT]) + self.assertEqual(to_bytecode("1 >= 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.GT_EQ]) + self.assertEqual(to_bytecode("1 like 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.LIKE]) + self.assertEqual(to_bytecode("1 ilike 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.ILIKE]) + self.assertEqual(to_bytecode("1 not like 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.NOT_LIKE]) + self.assertEqual(to_bytecode("1 not ilike 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.NOT_ILIKE]) + self.assertEqual(to_bytecode("1 in 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.IN]) + self.assertEqual(to_bytecode("1 not in 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.NOT_IN]) + self.assertEqual(to_bytecode("'string' ~ 'regex'"), [_H, op.STRING, "regex", op.STRING, "string", op.REGEX]) + self.assertEqual(to_bytecode("'string' =~ 'regex'"), [_H, op.STRING, "regex", op.STRING, "string", op.REGEX]) + self.assertEqual( + to_bytecode("'string' !~ 'regex'"), [_H, op.STRING, "regex", op.STRING, "string", op.NOT_REGEX] + ) + self.assertEqual( + to_bytecode("match('test', 'e.*')"), [_H, op.STRING, "e.*", op.STRING, "test", op.CALL, "match", 2] + ) + self.assertEqual( + to_bytecode("match('test', '^e.*')"), [_H, op.STRING, "^e.*", op.STRING, "test", op.CALL, "match", 2] + ) + self.assertEqual( + to_bytecode("match('test', 'x.*')"), [_H, op.STRING, "x.*", op.STRING, "test", op.CALL, "match", 2] + ) + + def test_bytecode_create_error(self): + with self.assertRaises(NotImplementedException) as e: + to_bytecode("(select 1)") + self.assertEqual(str(e.exception), "Visitor has no method visit_select_query") From f5a6ff1bb23d682c57b790d34429e21670058d12 Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Wed, 28 Jun 2023 09:17:23 +0200 Subject: [PATCH 10/13] support iregex --- hogvm/CHANGELOG.md | 64 ++++++++++--------- hogvm/README.md | 64 ++++++++++--------- hogvm/python/execute.py | 6 ++ hogvm/python/operation.py | 16 +++-- hogvm/python/test/test_execute.py | 3 + .../typescript/src/__tests__/bytecode.test.ts | 6 ++ hogvm/typescript/src/bytecode.ts | 25 ++++++-- posthog/hogql/bytecode.py | 2 + 8 files changed, 114 insertions(+), 72 deletions(-) diff --git a/hogvm/CHANGELOG.md b/hogvm/CHANGELOG.md index 0c03cd6b79bf3..4524a59390fce 100644 --- a/hogvm/CHANGELOG.md +++ b/hogvm/CHANGELOG.md @@ -5,36 +5,40 @@ ### Operations added ```bash -FIELD = 1 # [arg3, arg2, arg1, FIELD, 3] # arg1.arg2.arg3 -CALL = 2 # [arg2, arg1, CALL, 'concat', 2] # concat(arg1, arg2) -AND = 3 # [val3, val2, val1, AND, 3] # val1 and val2 and val3 -OR = 4 # [val3, val2, val1, OR, 3] # val1 or val2 or val3 -NOT = 5 # [val, NOT] # not val -PLUS = 6 # [val2, val1, PLUS] # val1 + val2 -MINUS = 7 # [val2, val1, MINUS] # val1 - val2 -MULTIPLY = 8 # [val2, val1, MULTIPLY] # val1 * val2 -DIVIDE = 9 # [val2, val1, DIVIDE] # val1 / val2 -MOD = 10 # [val2, val1, MOD] # val1 % val2 -EQ = 11 # [val2, val1, EQ] # val1 == val2 -NOT_EQ = 12 # [val2, val1, NOT_EQ] # val1 != val2 -GT = 13 # [val2, val1, GT] # val1 > val2 -GT_EQ = 14 # [val2, val1, GT_EQ] # val1 >= val2 -LT = 15 # [val2, val1, LT] # val1 < val2 -LT_EQ = 16 # [val2, val1, LT_EQ] # val1 <= val2 -LIKE = 17 # [val2, val1, LIKE] # val1 like val2 -ILIKE = 18 # [val2, val1, ILIKE] # val1 ilike val2 -NOT_LIKE = 19 # [val2, val1, NOT_LIKE] # val1 not like val2 -NOT_ILIKE = 20 # [val2, val1, NOT_ILIKE] # val1 not ilike val2 -IN = 21 # [val2, val1, IN] # val1 in val2 -NOT_IN = 22 # [val2, val1, NOT_IN] # val1 not in val2 -REGEX = 23 # [val2, val1, REGEX] # val1 =~ val2 -NOT_REGEX = 24 # [val2, val1, NOT_REGEX] # val1 !~ val2 -TRUE = 25 # [TRUE] # true -FALSE = 26 # [FALSE] # false -NULL = 27 # [NULL] # null -STRING = 28 # [STRING, 'text'] # 'text' -INTEGER = 29 # [INTEGER, 123] # 123 -FLOAT = 30 # [FLOAT, 123.12] # 123.01 +FIELD = 1 # [arg3, arg2, arg1, FIELD, 3] # arg1.arg2.arg3 +CALL = 2 # [arg2, arg1, CALL, 'concat', 2] # concat(arg1, arg2) +AND = 3 # [val3, val2, val1, AND, 3] # val1 and val2 and val3 +OR = 4 # [val3, val2, val1, OR, 3] # val1 or val2 or val3 +NOT = 5 # [val, NOT] # not val +PLUS = 6 # [val2, val1, PLUS] # val1 + val2 +MINUS = 7 # [val2, val1, MINUS] # val1 - val2 +MULTIPLY = 8 # [val2, val1, MULTIPLY] # val1 * val2 +DIVIDE = 9 # [val2, val1, DIVIDE] # val1 / val2 +MOD = 10 # [val2, val1, MOD] # val1 % val2 +EQ = 11 # [val2, val1, EQ] # val1 == val2 +NOT_EQ = 12 # [val2, val1, NOT_EQ] # val1 != val2 +GT = 13 # [val2, val1, GT] # val1 > val2 +GT_EQ = 14 # [val2, val1, GT_EQ] # val1 >= val2 +LT = 15 # [val2, val1, LT] # val1 < val2 +LT_EQ = 16 # [val2, val1, LT_EQ] # val1 <= val2 +LIKE = 17 # [val2, val1, LIKE] # val1 like val2 +ILIKE = 18 # [val2, val1, ILIKE] # val1 ilike val2 +NOT_LIKE = 19 # [val2, val1, NOT_LIKE] # val1 not like val2 +NOT_ILIKE = 20 # [val2, val1, NOT_ILIKE] # val1 not ilike val2 +IN = 21 # [val2, val1, IN] # val1 in val2 +NOT_IN = 22 # [val2, val1, NOT_IN] # val1 not in val2 +REGEX = 23 # [val2, val1, REGEX] # val1 =~ val2 +NOT_REGEX = 24 # [val2, val1, NOT_REGEX] # val1 !~ val2 +IREGEX = 25 # [val2, val1, IREGEX] # val1 =~* val2 +NOT_IREGEX = 26 # [val2, val1, NOT_IREGEX] # val1 !~* val2 +IN_COHORT = 27 # [val2, val1, IREGEX] # val1 in cohort val2 +NOT_IN_COHORT = 28 # [val2, val1, NOT_IREGEX] # val1 not in cohort val2 +TRUE = 29 # [TRUE] # true +FALSE = 30 # [FALSE] # false +NULL = 31 # [NULL] # null +STRING = 32 # [STRING, 'text'] # 'text' +INTEGER = 33 # [INTEGER, 123] # 123 +FLOAT = 34 # [FLOAT, 123.12] # 123.01 ``` ### Functions added diff --git a/hogvm/README.md b/hogvm/README.md index 78f70b5736f4a..65f285b4ed1ed 100644 --- a/hogvm/README.md +++ b/hogvm/README.md @@ -26,36 +26,40 @@ The `python/execute.py` function in this folder acts as the reference implementa To be considered a PostHog HogQL Bytecode Certified Parser, you must implement the following operations: ```bash -FIELD = 1 # [arg3, arg2, arg1, FIELD, 3] # arg1.arg2.arg3 -CALL = 2 # [arg2, arg1, CALL, 'concat', 2] # concat(arg1, arg2) -AND = 3 # [val3, val2, val1, AND, 3] # val1 and val2 and val3 -OR = 4 # [val3, val2, val1, OR, 3] # val1 or val2 or val3 -NOT = 5 # [val, NOT] # not val -PLUS = 6 # [val2, val1, PLUS] # val1 + val2 -MINUS = 7 # [val2, val1, MINUS] # val1 - val2 -MULTIPLY = 8 # [val2, val1, MULTIPLY] # val1 * val2 -DIVIDE = 9 # [val2, val1, DIVIDE] # val1 / val2 -MOD = 10 # [val2, val1, MOD] # val1 % val2 -EQ = 11 # [val2, val1, EQ] # val1 == val2 -NOT_EQ = 12 # [val2, val1, NOT_EQ] # val1 != val2 -GT = 13 # [val2, val1, GT] # val1 > val2 -GT_EQ = 14 # [val2, val1, GT_EQ] # val1 >= val2 -LT = 15 # [val2, val1, LT] # val1 < val2 -LT_EQ = 16 # [val2, val1, LT_EQ] # val1 <= val2 -LIKE = 17 # [val2, val1, LIKE] # val1 like val2 -ILIKE = 18 # [val2, val1, ILIKE] # val1 ilike val2 -NOT_LIKE = 19 # [val2, val1, NOT_LIKE] # val1 not like val2 -NOT_ILIKE = 20 # [val2, val1, NOT_ILIKE] # val1 not ilike val2 -IN = 21 # [val2, val1, IN] # val1 in val2 -NOT_IN = 22 # [val2, val1, NOT_IN] # val1 not in val2 -REGEX = 23 # [val2, val1, REGEX] # val1 =~ val2 -NOT_REGEX = 24 # [val2, val1, NOT_REGEX] # val1 !~ val2 -TRUE = 25 # [TRUE] # true -FALSE = 26 # [FALSE] # false -NULL = 27 # [NULL] # null -STRING = 28 # [STRING, 'text'] # 'text' -INTEGER = 29 # [INTEGER, 123] # 123 -FLOAT = 30 # [FLOAT, 123.12] # 123.01 +FIELD = 1 # [arg3, arg2, arg1, FIELD, 3] # arg1.arg2.arg3 +CALL = 2 # [arg2, arg1, CALL, 'concat', 2] # concat(arg1, arg2) +AND = 3 # [val3, val2, val1, AND, 3] # val1 and val2 and val3 +OR = 4 # [val3, val2, val1, OR, 3] # val1 or val2 or val3 +NOT = 5 # [val, NOT] # not val +PLUS = 6 # [val2, val1, PLUS] # val1 + val2 +MINUS = 7 # [val2, val1, MINUS] # val1 - val2 +MULTIPLY = 8 # [val2, val1, MULTIPLY] # val1 * val2 +DIVIDE = 9 # [val2, val1, DIVIDE] # val1 / val2 +MOD = 10 # [val2, val1, MOD] # val1 % val2 +EQ = 11 # [val2, val1, EQ] # val1 == val2 +NOT_EQ = 12 # [val2, val1, NOT_EQ] # val1 != val2 +GT = 13 # [val2, val1, GT] # val1 > val2 +GT_EQ = 14 # [val2, val1, GT_EQ] # val1 >= val2 +LT = 15 # [val2, val1, LT] # val1 < val2 +LT_EQ = 16 # [val2, val1, LT_EQ] # val1 <= val2 +LIKE = 17 # [val2, val1, LIKE] # val1 like val2 +ILIKE = 18 # [val2, val1, ILIKE] # val1 ilike val2 +NOT_LIKE = 19 # [val2, val1, NOT_LIKE] # val1 not like val2 +NOT_ILIKE = 20 # [val2, val1, NOT_ILIKE] # val1 not ilike val2 +IN = 21 # [val2, val1, IN] # val1 in val2 +NOT_IN = 22 # [val2, val1, NOT_IN] # val1 not in val2 +REGEX = 23 # [val2, val1, REGEX] # val1 =~ val2 +NOT_REGEX = 24 # [val2, val1, NOT_REGEX] # val1 !~ val2 +IREGEX = 25 # [val2, val1, IREGEX] # val1 =~* val2 +NOT_IREGEX = 26 # [val2, val1, NOT_IREGEX] # val1 !~* val2 +IN_COHORT = 27 # [val2, val1, IREGEX] # val1 in cohort val2 +NOT_IN_COHORT = 28 # [val2, val1, NOT_IREGEX] # val1 not in cohort val2 +TRUE = 29 # [TRUE] # true +FALSE = 30 # [FALSE] # false +NULL = 31 # [NULL] # null +STRING = 32 # [STRING, 'text'] # 'text' +INTEGER = 33 # [INTEGER, 123] # 123 +FLOAT = 34 # [FLOAT, 123.12] # 123.01 ``` ### Functions diff --git a/hogvm/python/execute.py b/hogvm/python/execute.py index be795f4a5469c..15bbbace68a50 100644 --- a/hogvm/python/execute.py +++ b/hogvm/python/execute.py @@ -100,6 +100,12 @@ def execute_bytecode(bytecode: List[Any], fields: Dict[str, Any]) -> Any: case Operation.NOT_REGEX: args = [stack.pop(), stack.pop()] stack.append(not bool(re.search(re.compile(args[1]), args[0]))) + case Operation.IREGEX: + args = [stack.pop(), stack.pop()] + stack.append(bool(re.search(re.compile(args[1], re.RegexFlag.IGNORECASE), args[0]))) + case Operation.NOT_IREGEX: + args = [stack.pop(), stack.pop()] + stack.append(not bool(re.search(re.compile(args[1], re.RegexFlag.IGNORECASE), args[0]))) case Operation.FIELD: chain = [stack.pop() for _ in range(next(iterator))] stack.append(get_nested_value(fields, chain)) diff --git a/hogvm/python/operation.py b/hogvm/python/operation.py index a22d6621118bd..48252f4aaccf4 100644 --- a/hogvm/python/operation.py +++ b/hogvm/python/operation.py @@ -31,9 +31,13 @@ class Operation(str, Enum): NOT_IN = 22 REGEX = 23 NOT_REGEX = 24 - TRUE = 25 - FALSE = 26 - NULL = 27 - STRING = 28 - INTEGER = 29 - FLOAT = 30 + IREGEX = 25 + NOT_IREGEX = 26 + IN_COHORT = 27 + NOT_IN_COHORT = 28 + TRUE = 29 + FALSE = 30 + NULL = 31 + STRING = 32 + INTEGER = 33 + FLOAT = 34 diff --git a/hogvm/python/test/test_execute.py b/hogvm/python/test/test_execute.py index 38e4fa51add05..c99ed451f13a3 100644 --- a/hogvm/python/test/test_execute.py +++ b/hogvm/python/test/test_execute.py @@ -63,6 +63,9 @@ def test_bytecode_create(self): self.assertEqual(self._run("'test' !~ '^e.*'"), True) self.assertEqual(self._run("'test' =~ 'x.*'"), False) self.assertEqual(self._run("'test' !~ 'x.*'"), True) + self.assertEqual(self._run("'test' ~* 'EST'"), True) + self.assertEqual(self._run("'test' =~* 'EST'"), True) + self.assertEqual(self._run("'test' !~* 'EST'"), False) self.assertEqual(self._run("toString(1)"), "1") self.assertEqual(self._run("toString(1.5)"), "1.5") self.assertEqual(self._run("toString(true)"), "true") diff --git a/hogvm/typescript/src/__tests__/bytecode.test.ts b/hogvm/typescript/src/__tests__/bytecode.test.ts index a063db0219ae6..0d889c7f316c4 100644 --- a/hogvm/typescript/src/__tests__/bytecode.test.ts +++ b/hogvm/typescript/src/__tests__/bytecode.test.ts @@ -41,6 +41,12 @@ describe('HogQL Bytecode', () => { expect(executeHogQLBytecode(['_h', op.STRING, 'b', op.STRING, 'a', op.REGEX], fields)).toBe(false) expect(executeHogQLBytecode(['_h', op.STRING, '.*', op.STRING, 'a', op.NOT_REGEX], fields)).toBe(false) expect(executeHogQLBytecode(['_h', op.STRING, 'b', op.STRING, 'a', op.NOT_REGEX], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, '.*', op.STRING, 'kala', op.IREGEX], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, 'b', op.STRING, 'kala', op.IREGEX], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.STRING, 'AL', op.STRING, 'kala', op.IREGEX], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, '.*', op.STRING, 'kala', op.NOT_IREGEX], fields)).toBe(false) + expect(executeHogQLBytecode(['_h', op.STRING, 'b', op.STRING, 'kala', op.NOT_IREGEX], fields)).toBe(true) + expect(executeHogQLBytecode(['_h', op.STRING, 'AL', op.STRING, 'kala', op.NOT_IREGEX], fields)).toBe(false) expect(executeHogQLBytecode(['_h', op.STRING, 'bla', op.STRING, 'properties', op.FIELD, 2], fields)).toBe(null) expect(executeHogQLBytecode(['_h', op.STRING, 'foo', op.STRING, 'properties', op.FIELD, 2], fields)).toBe('bar') expect(executeHogQLBytecode(['_h', op.STRING, 'another', op.STRING, 'arg', op.CALL, 'concat', 2], fields)).toBe( diff --git a/hogvm/typescript/src/bytecode.ts b/hogvm/typescript/src/bytecode.ts index 983be183f5646..d35049a298c68 100644 --- a/hogvm/typescript/src/bytecode.ts +++ b/hogvm/typescript/src/bytecode.ts @@ -23,12 +23,17 @@ export const enum Operation { NOT_IN = 22, REGEX = 23, NOT_REGEX = 24, - TRUE = 25, - FALSE = 26, - NULL = 27, - STRING = 28, - INTEGER = 29, - FLOAT = 30, + IREGEX = 25, + NOT_IREGEX = 26, + IN_COHORT = 27, + NOT_IN_COHORT = 28, + + TRUE = 29, + FALSE = 30, + NULL = 31, + STRING = 32, + INTEGER = 33, + FLOAT = 34, } function like(string: string, pattern: string, caseInsensitive = false): boolean { @@ -175,6 +180,14 @@ export function executeHogQLBytecode(bytecode: any[], fields: Record Date: Wed, 28 Jun 2023 09:27:53 +0200 Subject: [PATCH 11/13] cleanup --- hogvm/CHANGELOG.md | 8 +++++--- hogvm/README.md | 11 +++++++---- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/hogvm/CHANGELOG.md b/hogvm/CHANGELOG.md index 4524a59390fce..2809d9578e24c 100644 --- a/hogvm/CHANGELOG.md +++ b/hogvm/CHANGELOG.md @@ -1,6 +1,6 @@ # HogQL bytecode changelog -## 2023-06-27 - First version +## 2023-06-28 - First version ### Operations added @@ -31,14 +31,16 @@ REGEX = 23 # [val2, val1, REGEX] # val1 =~ val2 NOT_REGEX = 24 # [val2, val1, NOT_REGEX] # val1 !~ val2 IREGEX = 25 # [val2, val1, IREGEX] # val1 =~* val2 NOT_IREGEX = 26 # [val2, val1, NOT_IREGEX] # val1 !~* val2 -IN_COHORT = 27 # [val2, val1, IREGEX] # val1 in cohort val2 -NOT_IN_COHORT = 28 # [val2, val1, NOT_IREGEX] # val1 not in cohort val2 TRUE = 29 # [TRUE] # true FALSE = 30 # [FALSE] # false NULL = 31 # [NULL] # null STRING = 32 # [STRING, 'text'] # 'text' INTEGER = 33 # [INTEGER, 123] # 123 FLOAT = 34 # [FLOAT, 123.12] # 123.01 + +# Added for completion, but not yet implemented. Stay tuned! +IN_COHORT = 27 # [val2, val1, IREGEX] # val1 in cohort val2 +NOT_IN_COHORT = 28 # [val2, val1, NOT_IREGEX] # val1 not in cohort val2 ``` ### Functions added diff --git a/hogvm/README.md b/hogvm/README.md index 65f285b4ed1ed..477bf6a6ded3a 100644 --- a/hogvm/README.md +++ b/hogvm/README.md @@ -52,19 +52,21 @@ REGEX = 23 # [val2, val1, REGEX] # val1 =~ val2 NOT_REGEX = 24 # [val2, val1, NOT_REGEX] # val1 !~ val2 IREGEX = 25 # [val2, val1, IREGEX] # val1 =~* val2 NOT_IREGEX = 26 # [val2, val1, NOT_IREGEX] # val1 !~* val2 -IN_COHORT = 27 # [val2, val1, IREGEX] # val1 in cohort val2 -NOT_IN_COHORT = 28 # [val2, val1, NOT_IREGEX] # val1 not in cohort val2 TRUE = 29 # [TRUE] # true FALSE = 30 # [FALSE] # false NULL = 31 # [NULL] # null STRING = 32 # [STRING, 'text'] # 'text' INTEGER = 33 # [INTEGER, 123] # 123 FLOAT = 34 # [FLOAT, 123.12] # 123.01 + +# Added for completion, but not yet implemented. Stay tuned! +IN_COHORT = 27 # [val2, val1, IREGEX] # val1 in cohort val2 +NOT_IN_COHORT = 28 # [val2, val1, NOT_IREGEX] # val1 not in cohort val2 ``` ### Functions -You must also implement the following function calls: +A PostHog HogQL Bytecode Certified Parser must also implement the following function calls: ```bash concat(...) # concat('test: ', 1, null, '!') == 'test: 1!' @@ -88,6 +90,7 @@ Nulls are just ignored in `concat` ## Known broken features -- **Regular Expression** support is implemented, but NOT GUARANTEED to the same way across platforms. Different implementations (ClickHouse, Python, Node) use different Regexp engines. ClickHouse uses `re2`, the others use `pcre`. +- **Regular Expression** support is implemented, but NOT GUARANTEED to the same way across platforms. Different implementations (ClickHouse, Python, Node) use different Regexp engines. ClickHouse uses `re2`, the others use `pcre`. Use the case-insensitive regex operators instead of passing in modifier flags through the expression. - **DateTime** comparisons are not supported. +- **Cohort Matching** operations are not implemented. - Only a small subset of functions is enabled. This list is bound to expand. From 9e2d2dc893a861aa69f230b1e460182e99af840d Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Wed, 28 Jun 2023 09:31:18 +0200 Subject: [PATCH 12/13] write bytecode with cohort --- posthog/hogql/bytecode.py | 2 ++ posthog/hogql/test/test_bytecode.py | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/posthog/hogql/bytecode.py b/posthog/hogql/bytecode.py index 21b5ba0070e84..68a5725c7e530 100644 --- a/posthog/hogql/bytecode.py +++ b/posthog/hogql/bytecode.py @@ -18,6 +18,8 @@ ast.CompareOperationOp.NotILike: Operation.NOT_ILIKE, ast.CompareOperationOp.In: Operation.IN, ast.CompareOperationOp.NotIn: Operation.NOT_IN, + ast.CompareOperationOp.InCohort: Operation.IN_COHORT, + ast.CompareOperationOp.NotInCohort: Operation.NOT_IN_COHORT, ast.CompareOperationOp.Regex: Operation.REGEX, ast.CompareOperationOp.NotRegex: Operation.NOT_REGEX, ast.CompareOperationOp.IRegex: Operation.IREGEX, diff --git a/posthog/hogql/test/test_bytecode.py b/posthog/hogql/test/test_bytecode.py index 49260a7289ac6..3aff8fc325bdf 100644 --- a/posthog/hogql/test/test_bytecode.py +++ b/posthog/hogql/test/test_bytecode.py @@ -39,11 +39,18 @@ def test_bytecode_create(self): self.assertEqual(to_bytecode("1 not ilike 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.NOT_ILIKE]) self.assertEqual(to_bytecode("1 in 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.IN]) self.assertEqual(to_bytecode("1 not in 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.NOT_IN]) + self.assertEqual(to_bytecode("1 in cohort 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.IN_COHORT]) + self.assertEqual(to_bytecode("1 not in cohort 2"), [_H, op.INTEGER, 2, op.INTEGER, 1, op.NOT_IN_COHORT]) self.assertEqual(to_bytecode("'string' ~ 'regex'"), [_H, op.STRING, "regex", op.STRING, "string", op.REGEX]) self.assertEqual(to_bytecode("'string' =~ 'regex'"), [_H, op.STRING, "regex", op.STRING, "string", op.REGEX]) self.assertEqual( to_bytecode("'string' !~ 'regex'"), [_H, op.STRING, "regex", op.STRING, "string", op.NOT_REGEX] ) + self.assertEqual(to_bytecode("'string' ~* 'regex'"), [_H, op.STRING, "regex", op.STRING, "string", op.IREGEX]) + self.assertEqual(to_bytecode("'string' =~* 'regex'"), [_H, op.STRING, "regex", op.STRING, "string", op.IREGEX]) + self.assertEqual( + to_bytecode("'string' !~* 'regex'"), [_H, op.STRING, "regex", op.STRING, "string", op.NOT_IREGEX] + ) self.assertEqual( to_bytecode("match('test', 'e.*')"), [_H, op.STRING, "e.*", op.STRING, "test", op.CALL, "match", 2] ) From 9e77fec77a81dc31f07a4ed71569458d81a2225a Mon Sep 17 00:00:00 2001 From: Marius Andra Date: Wed, 28 Jun 2023 09:51:17 +0200 Subject: [PATCH 13/13] update grammar --- posthog/hogql/grammar/HogQLLexer.interp | 30 +- posthog/hogql/grammar/HogQLLexer.py | 1750 +++++++++++----------- posthog/hogql/grammar/HogQLLexer.tokens | 90 +- posthog/hogql/grammar/HogQLParser.interp | 20 +- posthog/hogql/grammar/HogQLParser.py | 1091 +++++++------- posthog/hogql/grammar/HogQLParser.tokens | 90 +- 6 files changed, 1600 insertions(+), 1471 deletions(-) diff --git a/posthog/hogql/grammar/HogQLLexer.interp b/posthog/hogql/grammar/HogQLLexer.interp index 6b5756d4f364b..3e078ad307c5d 100644 --- a/posthog/hogql/grammar/HogQLLexer.interp +++ b/posthog/hogql/grammar/HogQLLexer.interp @@ -215,18 +215,24 @@ null '>=' '>' '#' +'~*' +'=~*' '{' '[' -'<=' '(' +'<=' '<' null +'!~*' +'!~' '??' '%' '+' '?' '"' '\'' +'~' +'=~' '}' ']' ')' @@ -451,21 +457,27 @@ DOLLAR DOT EQ_DOUBLE EQ_SINGLE -GE +GT_EQ GT HASH +IREGEX_SINGLE +IREGEX_DOUBLE LBRACE LBRACKET -LE LPAREN +LT_EQ LT NOT_EQ +NOT_IREGEX +NOT_REGEX NULLISH PERCENT PLUS QUERY QUOTE_DOUBLE QUOTE_SINGLE +REGEX_SINGLE +REGEX_DOUBLE RBRACE RBRACKET RPAREN @@ -719,21 +731,27 @@ DOLLAR DOT EQ_DOUBLE EQ_SINGLE -GE +GT_EQ GT HASH +IREGEX_SINGLE +IREGEX_DOUBLE LBRACE LBRACKET -LE LPAREN +LT_EQ LT NOT_EQ +NOT_IREGEX +NOT_REGEX NULLISH PERCENT PLUS QUERY QUOTE_DOUBLE QUOTE_SINGLE +REGEX_SINGLE +REGEX_DOUBLE RBRACE RBRACKET RPAREN @@ -752,4 +770,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 236, 2191, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 596, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1101, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 1815, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 1858, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 1863, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1869, 8, 193, 10, 193, 12, 193, 1872, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1880, 8, 193, 10, 193, 12, 193, 1883, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1893, 8, 193, 10, 193, 12, 193, 1896, 9, 193, 1, 193, 1, 193, 3, 193, 1900, 8, 193, 1, 194, 1, 194, 1, 194, 5, 194, 1905, 8, 194, 10, 194, 12, 194, 1908, 9, 194, 1, 194, 1, 194, 3, 194, 1912, 8, 194, 1, 194, 1, 194, 3, 194, 1916, 8, 194, 1, 194, 4, 194, 1919, 8, 194, 11, 194, 12, 194, 1920, 1, 194, 1, 194, 1, 194, 3, 194, 1926, 8, 194, 1, 194, 1, 194, 3, 194, 1930, 8, 194, 1, 194, 4, 194, 1933, 8, 194, 11, 194, 12, 194, 1934, 1, 194, 1, 194, 1, 194, 5, 194, 1940, 8, 194, 10, 194, 12, 194, 1943, 9, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1948, 8, 194, 1, 194, 4, 194, 1951, 8, 194, 11, 194, 12, 194, 1952, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1960, 8, 194, 1, 194, 4, 194, 1963, 8, 194, 11, 194, 12, 194, 1964, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1971, 8, 194, 1, 194, 4, 194, 1974, 8, 194, 11, 194, 12, 194, 1975, 3, 194, 1978, 8, 194, 1, 195, 1, 195, 4, 195, 1982, 8, 195, 11, 195, 12, 195, 1983, 1, 196, 4, 196, 1987, 8, 196, 11, 196, 12, 196, 1988, 1, 197, 1, 197, 1, 197, 4, 197, 1994, 8, 197, 11, 197, 12, 197, 1995, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2004, 8, 198, 10, 198, 12, 198, 2007, 9, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2017, 8, 199, 10, 199, 12, 199, 2020, 9, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 1, 223, 1, 223, 1, 224, 1, 224, 1, 225, 1, 225, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 250, 3, 250, 2133, 8, 250, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 253, 1, 253, 1, 254, 1, 254, 1, 255, 1, 255, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 263, 1, 263, 1, 263, 1, 263, 5, 263, 2164, 8, 263, 10, 263, 12, 263, 2167, 9, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 263, 1, 264, 1, 264, 1, 264, 1, 264, 5, 264, 2178, 8, 264, 10, 264, 12, 264, 2181, 9, 264, 1, 264, 3, 264, 2184, 8, 264, 1, 264, 1, 264, 1, 265, 1, 265, 1, 265, 1, 265, 1, 2165, 0, 266, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 0, 451, 0, 453, 0, 455, 0, 457, 0, 459, 0, 461, 201, 463, 202, 465, 203, 467, 204, 469, 205, 471, 206, 473, 207, 475, 208, 477, 209, 479, 210, 481, 211, 483, 212, 485, 213, 487, 214, 489, 215, 491, 216, 493, 217, 495, 218, 497, 219, 499, 220, 501, 221, 503, 222, 505, 223, 507, 224, 509, 225, 511, 226, 513, 227, 515, 228, 517, 229, 519, 230, 521, 231, 523, 232, 525, 233, 527, 234, 529, 235, 531, 236, 1, 0, 37, 2, 0, 92, 92, 96, 96, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 2, 0, 92, 92, 125, 125, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 65, 90, 97, 122, 1, 0, 48, 55, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 2, 0, 10, 10, 13, 13, 2, 1, 10, 10, 13, 13, 2, 0, 9, 13, 32, 32, 2221, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 1, 533, 1, 0, 0, 0, 3, 537, 1, 0, 0, 0, 5, 543, 1, 0, 0, 0, 7, 549, 1, 0, 0, 0, 9, 553, 1, 0, 0, 0, 11, 559, 1, 0, 0, 0, 13, 563, 1, 0, 0, 0, 15, 568, 1, 0, 0, 0, 17, 572, 1, 0, 0, 0, 19, 578, 1, 0, 0, 0, 21, 595, 1, 0, 0, 0, 23, 597, 1, 0, 0, 0, 25, 602, 1, 0, 0, 0, 27, 606, 1, 0, 0, 0, 29, 612, 1, 0, 0, 0, 31, 619, 1, 0, 0, 0, 33, 627, 1, 0, 0, 0, 35, 632, 1, 0, 0, 0, 37, 635, 1, 0, 0, 0, 39, 640, 1, 0, 0, 0, 41, 645, 1, 0, 0, 0, 43, 651, 1, 0, 0, 0, 45, 657, 1, 0, 0, 0, 47, 665, 1, 0, 0, 0, 49, 671, 1, 0, 0, 0, 51, 678, 1, 0, 0, 0, 53, 686, 1, 0, 0, 0, 55, 693, 1, 0, 0, 0, 57, 701, 1, 0, 0, 0, 59, 712, 1, 0, 0, 0, 61, 719, 1, 0, 0, 0, 63, 725, 1, 0, 0, 0, 65, 730, 1, 0, 0, 0, 67, 738, 1, 0, 0, 0, 69, 747, 1, 0, 0, 0, 71, 757, 1, 0, 0, 0, 73, 762, 1, 0, 0, 0, 75, 766, 1, 0, 0, 0, 77, 778, 1, 0, 0, 0, 79, 786, 1, 0, 0, 0, 81, 792, 1, 0, 0, 0, 83, 799, 1, 0, 0, 0, 85, 804, 1, 0, 0, 0, 87, 815, 1, 0, 0, 0, 89, 824, 1, 0, 0, 0, 91, 831, 1, 0, 0, 0, 93, 844, 1, 0, 0, 0, 95, 855, 1, 0, 0, 0, 97, 860, 1, 0, 0, 0, 99, 869, 1, 0, 0, 0, 101, 881, 1, 0, 0, 0, 103, 886, 1, 0, 0, 0, 105, 891, 1, 0, 0, 0, 107, 895, 1, 0, 0, 0, 109, 902, 1, 0, 0, 0, 111, 909, 1, 0, 0, 0, 113, 916, 1, 0, 0, 0, 115, 924, 1, 0, 0, 0, 117, 935, 1, 0, 0, 0, 119, 943, 1, 0, 0, 0, 121, 951, 1, 0, 0, 0, 123, 957, 1, 0, 0, 0, 125, 963, 1, 0, 0, 0, 127, 969, 1, 0, 0, 0, 129, 979, 1, 0, 0, 0, 131, 983, 1, 0, 0, 0, 133, 990, 1, 0, 0, 0, 135, 997, 1, 0, 0, 0, 137, 1002, 1, 0, 0, 0, 139, 1007, 1, 0, 0, 0, 141, 1016, 1, 0, 0, 0, 143, 1023, 1, 0, 0, 0, 145, 1035, 1, 0, 0, 0, 147, 1041, 1, 0, 0, 0, 149, 1048, 1, 0, 0, 0, 151, 1061, 1, 0, 0, 0, 153, 1066, 1, 0, 0, 0, 155, 1069, 1, 0, 0, 0, 157, 1072, 1, 0, 0, 0, 159, 1078, 1, 0, 0, 0, 161, 1081, 1, 0, 0, 0, 163, 1100, 1, 0, 0, 0, 165, 1102, 1, 0, 0, 0, 167, 1112, 1, 0, 0, 0, 169, 1118, 1, 0, 0, 0, 171, 1125, 1, 0, 0, 0, 173, 1134, 1, 0, 0, 0, 175, 1139, 1, 0, 0, 0, 177, 1142, 1, 0, 0, 0, 179, 1155, 1, 0, 0, 0, 181, 1160, 1, 0, 0, 0, 183, 1164, 1, 0, 0, 0, 185, 1169, 1, 0, 0, 0, 187, 1174, 1, 0, 0, 0, 189, 1181, 1, 0, 0, 0, 191, 1189, 1, 0, 0, 0, 193, 1194, 1, 0, 0, 0, 195, 1203, 1, 0, 0, 0, 197, 1208, 1, 0, 0, 0, 199, 1214, 1, 0, 0, 0, 201, 1219, 1, 0, 0, 0, 203, 1225, 1, 0, 0, 0, 205, 1230, 1, 0, 0, 0, 207, 1242, 1, 0, 0, 0, 209, 1255, 1, 0, 0, 0, 211, 1259, 1, 0, 0, 0, 213, 1266, 1, 0, 0, 0, 215, 1270, 1, 0, 0, 0, 217, 1277, 1, 0, 0, 0, 219, 1284, 1, 0, 0, 0, 221, 1290, 1, 0, 0, 0, 223, 1295, 1, 0, 0, 0, 225, 1304, 1, 0, 0, 0, 227, 1308, 1, 0, 0, 0, 229, 1311, 1, 0, 0, 0, 231, 1315, 1, 0, 0, 0, 233, 1320, 1, 0, 0, 0, 235, 1326, 1, 0, 0, 0, 237, 1333, 1, 0, 0, 0, 239, 1336, 1, 0, 0, 0, 241, 1345, 1, 0, 0, 0, 243, 1348, 1, 0, 0, 0, 245, 1354, 1, 0, 0, 0, 247, 1360, 1, 0, 0, 0, 249, 1368, 1, 0, 0, 0, 251, 1373, 1, 0, 0, 0, 253, 1383, 1, 0, 0, 0, 255, 1392, 1, 0, 0, 0, 257, 1402, 1, 0, 0, 0, 259, 1411, 1, 0, 0, 0, 261, 1419, 1, 0, 0, 0, 263, 1430, 1, 0, 0, 0, 265, 1438, 1, 0, 0, 0, 267, 1444, 1, 0, 0, 0, 269, 1451, 1, 0, 0, 0, 271, 1458, 1, 0, 0, 0, 273, 1465, 1, 0, 0, 0, 275, 1473, 1, 0, 0, 0, 277, 1481, 1, 0, 0, 0, 279, 1492, 1, 0, 0, 0, 281, 1498, 1, 0, 0, 0, 283, 1505, 1, 0, 0, 0, 285, 1509, 1, 0, 0, 0, 287, 1514, 1, 0, 0, 0, 289, 1521, 1, 0, 0, 0, 291, 1528, 1, 0, 0, 0, 293, 1535, 1, 0, 0, 0, 295, 1540, 1, 0, 0, 0, 297, 1546, 1, 0, 0, 0, 299, 1550, 1, 0, 0, 0, 301, 1559, 1, 0, 0, 0, 303, 1564, 1, 0, 0, 0, 305, 1571, 1, 0, 0, 0, 307, 1577, 1, 0, 0, 0, 309, 1582, 1, 0, 0, 0, 311, 1592, 1, 0, 0, 0, 313, 1597, 1, 0, 0, 0, 315, 1604, 1, 0, 0, 0, 317, 1611, 1, 0, 0, 0, 319, 1617, 1, 0, 0, 0, 321, 1624, 1, 0, 0, 0, 323, 1634, 1, 0, 0, 0, 325, 1639, 1, 0, 0, 0, 327, 1644, 1, 0, 0, 0, 329, 1649, 1, 0, 0, 0, 331, 1657, 1, 0, 0, 0, 333, 1667, 1, 0, 0, 0, 335, 1670, 1, 0, 0, 0, 337, 1674, 1, 0, 0, 0, 339, 1681, 1, 0, 0, 0, 341, 1690, 1, 0, 0, 0, 343, 1695, 1, 0, 0, 0, 345, 1704, 1, 0, 0, 0, 347, 1708, 1, 0, 0, 0, 349, 1713, 1, 0, 0, 0, 351, 1723, 1, 0, 0, 0, 353, 1729, 1, 0, 0, 0, 355, 1736, 1, 0, 0, 0, 357, 1740, 1, 0, 0, 0, 359, 1746, 1, 0, 0, 0, 361, 1751, 1, 0, 0, 0, 363, 1758, 1, 0, 0, 0, 365, 1763, 1, 0, 0, 0, 367, 1770, 1, 0, 0, 0, 369, 1776, 1, 0, 0, 0, 371, 1781, 1, 0, 0, 0, 373, 1786, 1, 0, 0, 0, 375, 1792, 1, 0, 0, 0, 377, 1799, 1, 0, 0, 0, 379, 1814, 1, 0, 0, 0, 381, 1816, 1, 0, 0, 0, 383, 1822, 1, 0, 0, 0, 385, 1857, 1, 0, 0, 0, 387, 1899, 1, 0, 0, 0, 389, 1977, 1, 0, 0, 0, 391, 1979, 1, 0, 0, 0, 393, 1986, 1, 0, 0, 0, 395, 1990, 1, 0, 0, 0, 397, 1997, 1, 0, 0, 0, 399, 2010, 1, 0, 0, 0, 401, 2023, 1, 0, 0, 0, 403, 2025, 1, 0, 0, 0, 405, 2027, 1, 0, 0, 0, 407, 2029, 1, 0, 0, 0, 409, 2031, 1, 0, 0, 0, 411, 2033, 1, 0, 0, 0, 413, 2035, 1, 0, 0, 0, 415, 2037, 1, 0, 0, 0, 417, 2039, 1, 0, 0, 0, 419, 2041, 1, 0, 0, 0, 421, 2043, 1, 0, 0, 0, 423, 2045, 1, 0, 0, 0, 425, 2047, 1, 0, 0, 0, 427, 2049, 1, 0, 0, 0, 429, 2051, 1, 0, 0, 0, 431, 2053, 1, 0, 0, 0, 433, 2055, 1, 0, 0, 0, 435, 2057, 1, 0, 0, 0, 437, 2059, 1, 0, 0, 0, 439, 2061, 1, 0, 0, 0, 441, 2063, 1, 0, 0, 0, 443, 2065, 1, 0, 0, 0, 445, 2067, 1, 0, 0, 0, 447, 2069, 1, 0, 0, 0, 449, 2071, 1, 0, 0, 0, 451, 2073, 1, 0, 0, 0, 453, 2075, 1, 0, 0, 0, 455, 2077, 1, 0, 0, 0, 457, 2079, 1, 0, 0, 0, 459, 2081, 1, 0, 0, 0, 461, 2083, 1, 0, 0, 0, 463, 2086, 1, 0, 0, 0, 465, 2088, 1, 0, 0, 0, 467, 2090, 1, 0, 0, 0, 469, 2092, 1, 0, 0, 0, 471, 2094, 1, 0, 0, 0, 473, 2096, 1, 0, 0, 0, 475, 2099, 1, 0, 0, 0, 477, 2101, 1, 0, 0, 0, 479, 2103, 1, 0, 0, 0, 481, 2105, 1, 0, 0, 0, 483, 2108, 1, 0, 0, 0, 485, 2110, 1, 0, 0, 0, 487, 2113, 1, 0, 0, 0, 489, 2115, 1, 0, 0, 0, 491, 2117, 1, 0, 0, 0, 493, 2119, 1, 0, 0, 0, 495, 2121, 1, 0, 0, 0, 497, 2124, 1, 0, 0, 0, 499, 2126, 1, 0, 0, 0, 501, 2132, 1, 0, 0, 0, 503, 2134, 1, 0, 0, 0, 505, 2137, 1, 0, 0, 0, 507, 2139, 1, 0, 0, 0, 509, 2141, 1, 0, 0, 0, 511, 2143, 1, 0, 0, 0, 513, 2145, 1, 0, 0, 0, 515, 2147, 1, 0, 0, 0, 517, 2149, 1, 0, 0, 0, 519, 2151, 1, 0, 0, 0, 521, 2153, 1, 0, 0, 0, 523, 2155, 1, 0, 0, 0, 525, 2157, 1, 0, 0, 0, 527, 2159, 1, 0, 0, 0, 529, 2173, 1, 0, 0, 0, 531, 2187, 1, 0, 0, 0, 533, 534, 3, 401, 200, 0, 534, 535, 3, 407, 203, 0, 535, 536, 3, 407, 203, 0, 536, 2, 1, 0, 0, 0, 537, 538, 3, 401, 200, 0, 538, 539, 3, 411, 205, 0, 539, 540, 3, 439, 219, 0, 540, 541, 3, 409, 204, 0, 541, 542, 3, 435, 217, 0, 542, 4, 1, 0, 0, 0, 543, 544, 3, 401, 200, 0, 544, 545, 3, 423, 211, 0, 545, 546, 3, 417, 208, 0, 546, 547, 3, 401, 200, 0, 547, 548, 3, 437, 218, 0, 548, 6, 1, 0, 0, 0, 549, 550, 3, 401, 200, 0, 550, 551, 3, 423, 211, 0, 551, 552, 3, 423, 211, 0, 552, 8, 1, 0, 0, 0, 553, 554, 3, 401, 200, 0, 554, 555, 3, 423, 211, 0, 555, 556, 3, 439, 219, 0, 556, 557, 3, 409, 204, 0, 557, 558, 3, 435, 217, 0, 558, 10, 1, 0, 0, 0, 559, 560, 3, 401, 200, 0, 560, 561, 3, 427, 213, 0, 561, 562, 3, 407, 203, 0, 562, 12, 1, 0, 0, 0, 563, 564, 3, 401, 200, 0, 564, 565, 3, 427, 213, 0, 565, 566, 3, 439, 219, 0, 566, 567, 3, 417, 208, 0, 567, 14, 1, 0, 0, 0, 568, 569, 3, 401, 200, 0, 569, 570, 3, 427, 213, 0, 570, 571, 3, 449, 224, 0, 571, 16, 1, 0, 0, 0, 572, 573, 3, 401, 200, 0, 573, 574, 3, 435, 217, 0, 574, 575, 3, 435, 217, 0, 575, 576, 3, 401, 200, 0, 576, 577, 3, 449, 224, 0, 577, 18, 1, 0, 0, 0, 578, 579, 3, 401, 200, 0, 579, 580, 3, 437, 218, 0, 580, 20, 1, 0, 0, 0, 581, 582, 3, 401, 200, 0, 582, 583, 3, 437, 218, 0, 583, 584, 3, 405, 202, 0, 584, 596, 1, 0, 0, 0, 585, 586, 3, 401, 200, 0, 586, 587, 3, 437, 218, 0, 587, 588, 3, 405, 202, 0, 588, 589, 3, 409, 204, 0, 589, 590, 3, 427, 213, 0, 590, 591, 3, 407, 203, 0, 591, 592, 3, 417, 208, 0, 592, 593, 3, 427, 213, 0, 593, 594, 3, 413, 206, 0, 594, 596, 1, 0, 0, 0, 595, 581, 1, 0, 0, 0, 595, 585, 1, 0, 0, 0, 596, 22, 1, 0, 0, 0, 597, 598, 3, 401, 200, 0, 598, 599, 3, 437, 218, 0, 599, 600, 3, 429, 214, 0, 600, 601, 3, 411, 205, 0, 601, 24, 1, 0, 0, 0, 602, 603, 3, 401, 200, 0, 603, 604, 3, 437, 218, 0, 604, 605, 3, 439, 219, 0, 605, 26, 1, 0, 0, 0, 606, 607, 3, 401, 200, 0, 607, 608, 3, 437, 218, 0, 608, 609, 3, 449, 224, 0, 609, 610, 3, 427, 213, 0, 610, 611, 3, 405, 202, 0, 611, 28, 1, 0, 0, 0, 612, 613, 3, 401, 200, 0, 613, 614, 3, 439, 219, 0, 614, 615, 3, 439, 219, 0, 615, 616, 3, 401, 200, 0, 616, 617, 3, 405, 202, 0, 617, 618, 3, 415, 207, 0, 618, 30, 1, 0, 0, 0, 619, 620, 3, 403, 201, 0, 620, 621, 3, 409, 204, 0, 621, 622, 3, 439, 219, 0, 622, 623, 3, 445, 222, 0, 623, 624, 3, 409, 204, 0, 624, 625, 3, 409, 204, 0, 625, 626, 3, 427, 213, 0, 626, 32, 1, 0, 0, 0, 627, 628, 3, 403, 201, 0, 628, 629, 3, 429, 214, 0, 629, 630, 3, 439, 219, 0, 630, 631, 3, 415, 207, 0, 631, 34, 1, 0, 0, 0, 632, 633, 3, 403, 201, 0, 633, 634, 3, 449, 224, 0, 634, 36, 1, 0, 0, 0, 635, 636, 3, 405, 202, 0, 636, 637, 3, 401, 200, 0, 637, 638, 3, 437, 218, 0, 638, 639, 3, 409, 204, 0, 639, 38, 1, 0, 0, 0, 640, 641, 3, 405, 202, 0, 641, 642, 3, 401, 200, 0, 642, 643, 3, 437, 218, 0, 643, 644, 3, 439, 219, 0, 644, 40, 1, 0, 0, 0, 645, 646, 3, 405, 202, 0, 646, 647, 3, 415, 207, 0, 647, 648, 3, 409, 204, 0, 648, 649, 3, 405, 202, 0, 649, 650, 3, 421, 210, 0, 650, 42, 1, 0, 0, 0, 651, 652, 3, 405, 202, 0, 652, 653, 3, 423, 211, 0, 653, 654, 3, 409, 204, 0, 654, 655, 3, 401, 200, 0, 655, 656, 3, 435, 217, 0, 656, 44, 1, 0, 0, 0, 657, 658, 3, 405, 202, 0, 658, 659, 3, 423, 211, 0, 659, 660, 3, 441, 220, 0, 660, 661, 3, 437, 218, 0, 661, 662, 3, 439, 219, 0, 662, 663, 3, 409, 204, 0, 663, 664, 3, 435, 217, 0, 664, 46, 1, 0, 0, 0, 665, 666, 3, 405, 202, 0, 666, 667, 3, 429, 214, 0, 667, 668, 3, 407, 203, 0, 668, 669, 3, 409, 204, 0, 669, 670, 3, 405, 202, 0, 670, 48, 1, 0, 0, 0, 671, 672, 3, 405, 202, 0, 672, 673, 3, 429, 214, 0, 673, 674, 3, 415, 207, 0, 674, 675, 3, 429, 214, 0, 675, 676, 3, 435, 217, 0, 676, 677, 3, 439, 219, 0, 677, 50, 1, 0, 0, 0, 678, 679, 3, 405, 202, 0, 679, 680, 3, 429, 214, 0, 680, 681, 3, 423, 211, 0, 681, 682, 3, 423, 211, 0, 682, 683, 3, 401, 200, 0, 683, 684, 3, 439, 219, 0, 684, 685, 3, 409, 204, 0, 685, 52, 1, 0, 0, 0, 686, 687, 3, 405, 202, 0, 687, 688, 3, 429, 214, 0, 688, 689, 3, 423, 211, 0, 689, 690, 3, 441, 220, 0, 690, 691, 3, 425, 212, 0, 691, 692, 3, 427, 213, 0, 692, 54, 1, 0, 0, 0, 693, 694, 3, 405, 202, 0, 694, 695, 3, 429, 214, 0, 695, 696, 3, 425, 212, 0, 696, 697, 3, 425, 212, 0, 697, 698, 3, 409, 204, 0, 698, 699, 3, 427, 213, 0, 699, 700, 3, 439, 219, 0, 700, 56, 1, 0, 0, 0, 701, 702, 3, 405, 202, 0, 702, 703, 3, 429, 214, 0, 703, 704, 3, 427, 213, 0, 704, 705, 3, 437, 218, 0, 705, 706, 3, 439, 219, 0, 706, 707, 3, 435, 217, 0, 707, 708, 3, 401, 200, 0, 708, 709, 3, 417, 208, 0, 709, 710, 3, 427, 213, 0, 710, 711, 3, 439, 219, 0, 711, 58, 1, 0, 0, 0, 712, 713, 3, 405, 202, 0, 713, 714, 3, 435, 217, 0, 714, 715, 3, 409, 204, 0, 715, 716, 3, 401, 200, 0, 716, 717, 3, 439, 219, 0, 717, 718, 3, 409, 204, 0, 718, 60, 1, 0, 0, 0, 719, 720, 3, 405, 202, 0, 720, 721, 3, 435, 217, 0, 721, 722, 3, 429, 214, 0, 722, 723, 3, 437, 218, 0, 723, 724, 3, 437, 218, 0, 724, 62, 1, 0, 0, 0, 725, 726, 3, 405, 202, 0, 726, 727, 3, 441, 220, 0, 727, 728, 3, 403, 201, 0, 728, 729, 3, 409, 204, 0, 729, 64, 1, 0, 0, 0, 730, 731, 3, 405, 202, 0, 731, 732, 3, 441, 220, 0, 732, 733, 3, 435, 217, 0, 733, 734, 3, 435, 217, 0, 734, 735, 3, 409, 204, 0, 735, 736, 3, 427, 213, 0, 736, 737, 3, 439, 219, 0, 737, 66, 1, 0, 0, 0, 738, 739, 3, 407, 203, 0, 739, 740, 3, 401, 200, 0, 740, 741, 3, 439, 219, 0, 741, 742, 3, 401, 200, 0, 742, 743, 3, 403, 201, 0, 743, 744, 3, 401, 200, 0, 744, 745, 3, 437, 218, 0, 745, 746, 3, 409, 204, 0, 746, 68, 1, 0, 0, 0, 747, 748, 3, 407, 203, 0, 748, 749, 3, 401, 200, 0, 749, 750, 3, 439, 219, 0, 750, 751, 3, 401, 200, 0, 751, 752, 3, 403, 201, 0, 752, 753, 3, 401, 200, 0, 753, 754, 3, 437, 218, 0, 754, 755, 3, 409, 204, 0, 755, 756, 3, 437, 218, 0, 756, 70, 1, 0, 0, 0, 757, 758, 3, 407, 203, 0, 758, 759, 3, 401, 200, 0, 759, 760, 3, 439, 219, 0, 760, 761, 3, 409, 204, 0, 761, 72, 1, 0, 0, 0, 762, 763, 3, 407, 203, 0, 763, 764, 3, 401, 200, 0, 764, 765, 3, 449, 224, 0, 765, 74, 1, 0, 0, 0, 766, 767, 3, 407, 203, 0, 767, 768, 3, 409, 204, 0, 768, 769, 3, 407, 203, 0, 769, 770, 3, 441, 220, 0, 770, 771, 3, 431, 215, 0, 771, 772, 3, 423, 211, 0, 772, 773, 3, 417, 208, 0, 773, 774, 3, 405, 202, 0, 774, 775, 3, 401, 200, 0, 775, 776, 3, 439, 219, 0, 776, 777, 3, 409, 204, 0, 777, 76, 1, 0, 0, 0, 778, 779, 3, 407, 203, 0, 779, 780, 3, 409, 204, 0, 780, 781, 3, 411, 205, 0, 781, 782, 3, 401, 200, 0, 782, 783, 3, 441, 220, 0, 783, 784, 3, 423, 211, 0, 784, 785, 3, 439, 219, 0, 785, 78, 1, 0, 0, 0, 786, 787, 3, 407, 203, 0, 787, 788, 3, 409, 204, 0, 788, 789, 3, 423, 211, 0, 789, 790, 3, 401, 200, 0, 790, 791, 3, 449, 224, 0, 791, 80, 1, 0, 0, 0, 792, 793, 3, 407, 203, 0, 793, 794, 3, 409, 204, 0, 794, 795, 3, 423, 211, 0, 795, 796, 3, 409, 204, 0, 796, 797, 3, 439, 219, 0, 797, 798, 3, 409, 204, 0, 798, 82, 1, 0, 0, 0, 799, 800, 3, 407, 203, 0, 800, 801, 3, 409, 204, 0, 801, 802, 3, 437, 218, 0, 802, 803, 3, 405, 202, 0, 803, 84, 1, 0, 0, 0, 804, 805, 3, 407, 203, 0, 805, 806, 3, 409, 204, 0, 806, 807, 3, 437, 218, 0, 807, 808, 3, 405, 202, 0, 808, 809, 3, 409, 204, 0, 809, 810, 3, 427, 213, 0, 810, 811, 3, 407, 203, 0, 811, 812, 3, 417, 208, 0, 812, 813, 3, 427, 213, 0, 813, 814, 3, 413, 206, 0, 814, 86, 1, 0, 0, 0, 815, 816, 3, 407, 203, 0, 816, 817, 3, 409, 204, 0, 817, 818, 3, 437, 218, 0, 818, 819, 3, 405, 202, 0, 819, 820, 3, 435, 217, 0, 820, 821, 3, 417, 208, 0, 821, 822, 3, 403, 201, 0, 822, 823, 3, 409, 204, 0, 823, 88, 1, 0, 0, 0, 824, 825, 3, 407, 203, 0, 825, 826, 3, 409, 204, 0, 826, 827, 3, 439, 219, 0, 827, 828, 3, 401, 200, 0, 828, 829, 3, 405, 202, 0, 829, 830, 3, 415, 207, 0, 830, 90, 1, 0, 0, 0, 831, 832, 3, 407, 203, 0, 832, 833, 3, 417, 208, 0, 833, 834, 3, 405, 202, 0, 834, 835, 3, 439, 219, 0, 835, 836, 3, 417, 208, 0, 836, 837, 3, 429, 214, 0, 837, 838, 3, 427, 213, 0, 838, 839, 3, 401, 200, 0, 839, 840, 3, 435, 217, 0, 840, 841, 3, 417, 208, 0, 841, 842, 3, 409, 204, 0, 842, 843, 3, 437, 218, 0, 843, 92, 1, 0, 0, 0, 844, 845, 3, 407, 203, 0, 845, 846, 3, 417, 208, 0, 846, 847, 3, 405, 202, 0, 847, 848, 3, 439, 219, 0, 848, 849, 3, 417, 208, 0, 849, 850, 3, 429, 214, 0, 850, 851, 3, 427, 213, 0, 851, 852, 3, 401, 200, 0, 852, 853, 3, 435, 217, 0, 853, 854, 3, 449, 224, 0, 854, 94, 1, 0, 0, 0, 855, 856, 3, 407, 203, 0, 856, 857, 3, 417, 208, 0, 857, 858, 3, 437, 218, 0, 858, 859, 3, 421, 210, 0, 859, 96, 1, 0, 0, 0, 860, 861, 3, 407, 203, 0, 861, 862, 3, 417, 208, 0, 862, 863, 3, 437, 218, 0, 863, 864, 3, 439, 219, 0, 864, 865, 3, 417, 208, 0, 865, 866, 3, 427, 213, 0, 866, 867, 3, 405, 202, 0, 867, 868, 3, 439, 219, 0, 868, 98, 1, 0, 0, 0, 869, 870, 3, 407, 203, 0, 870, 871, 3, 417, 208, 0, 871, 872, 3, 437, 218, 0, 872, 873, 3, 439, 219, 0, 873, 874, 3, 435, 217, 0, 874, 875, 3, 417, 208, 0, 875, 876, 3, 403, 201, 0, 876, 877, 3, 441, 220, 0, 877, 878, 3, 439, 219, 0, 878, 879, 3, 409, 204, 0, 879, 880, 3, 407, 203, 0, 880, 100, 1, 0, 0, 0, 881, 882, 3, 407, 203, 0, 882, 883, 3, 435, 217, 0, 883, 884, 3, 429, 214, 0, 884, 885, 3, 431, 215, 0, 885, 102, 1, 0, 0, 0, 886, 887, 3, 409, 204, 0, 887, 888, 3, 423, 211, 0, 888, 889, 3, 437, 218, 0, 889, 890, 3, 409, 204, 0, 890, 104, 1, 0, 0, 0, 891, 892, 3, 409, 204, 0, 892, 893, 3, 427, 213, 0, 893, 894, 3, 407, 203, 0, 894, 106, 1, 0, 0, 0, 895, 896, 3, 409, 204, 0, 896, 897, 3, 427, 213, 0, 897, 898, 3, 413, 206, 0, 898, 899, 3, 417, 208, 0, 899, 900, 3, 427, 213, 0, 900, 901, 3, 409, 204, 0, 901, 108, 1, 0, 0, 0, 902, 903, 3, 409, 204, 0, 903, 904, 3, 443, 221, 0, 904, 905, 3, 409, 204, 0, 905, 906, 3, 427, 213, 0, 906, 907, 3, 439, 219, 0, 907, 908, 3, 437, 218, 0, 908, 110, 1, 0, 0, 0, 909, 910, 3, 409, 204, 0, 910, 911, 3, 447, 223, 0, 911, 912, 3, 417, 208, 0, 912, 913, 3, 437, 218, 0, 913, 914, 3, 439, 219, 0, 914, 915, 3, 437, 218, 0, 915, 112, 1, 0, 0, 0, 916, 917, 3, 409, 204, 0, 917, 918, 3, 447, 223, 0, 918, 919, 3, 431, 215, 0, 919, 920, 3, 423, 211, 0, 920, 921, 3, 401, 200, 0, 921, 922, 3, 417, 208, 0, 922, 923, 3, 427, 213, 0, 923, 114, 1, 0, 0, 0, 924, 925, 3, 409, 204, 0, 925, 926, 3, 447, 223, 0, 926, 927, 3, 431, 215, 0, 927, 928, 3, 435, 217, 0, 928, 929, 3, 409, 204, 0, 929, 930, 3, 437, 218, 0, 930, 931, 3, 437, 218, 0, 931, 932, 3, 417, 208, 0, 932, 933, 3, 429, 214, 0, 933, 934, 3, 427, 213, 0, 934, 116, 1, 0, 0, 0, 935, 936, 3, 409, 204, 0, 936, 937, 3, 447, 223, 0, 937, 938, 3, 439, 219, 0, 938, 939, 3, 435, 217, 0, 939, 940, 3, 401, 200, 0, 940, 941, 3, 405, 202, 0, 941, 942, 3, 439, 219, 0, 942, 118, 1, 0, 0, 0, 943, 944, 3, 411, 205, 0, 944, 945, 3, 409, 204, 0, 945, 946, 3, 439, 219, 0, 946, 947, 3, 405, 202, 0, 947, 948, 3, 415, 207, 0, 948, 949, 3, 409, 204, 0, 949, 950, 3, 437, 218, 0, 950, 120, 1, 0, 0, 0, 951, 952, 3, 411, 205, 0, 952, 953, 3, 417, 208, 0, 953, 954, 3, 427, 213, 0, 954, 955, 3, 401, 200, 0, 955, 956, 3, 423, 211, 0, 956, 122, 1, 0, 0, 0, 957, 958, 3, 411, 205, 0, 958, 959, 3, 417, 208, 0, 959, 960, 3, 435, 217, 0, 960, 961, 3, 437, 218, 0, 961, 962, 3, 439, 219, 0, 962, 124, 1, 0, 0, 0, 963, 964, 3, 411, 205, 0, 964, 965, 3, 423, 211, 0, 965, 966, 3, 441, 220, 0, 966, 967, 3, 437, 218, 0, 967, 968, 3, 415, 207, 0, 968, 126, 1, 0, 0, 0, 969, 970, 3, 411, 205, 0, 970, 971, 3, 429, 214, 0, 971, 972, 3, 423, 211, 0, 972, 973, 3, 423, 211, 0, 973, 974, 3, 429, 214, 0, 974, 975, 3, 445, 222, 0, 975, 976, 3, 417, 208, 0, 976, 977, 3, 427, 213, 0, 977, 978, 3, 413, 206, 0, 978, 128, 1, 0, 0, 0, 979, 980, 3, 411, 205, 0, 980, 981, 3, 429, 214, 0, 981, 982, 3, 435, 217, 0, 982, 130, 1, 0, 0, 0, 983, 984, 3, 411, 205, 0, 984, 985, 3, 429, 214, 0, 985, 986, 3, 435, 217, 0, 986, 987, 3, 425, 212, 0, 987, 988, 3, 401, 200, 0, 988, 989, 3, 439, 219, 0, 989, 132, 1, 0, 0, 0, 990, 991, 3, 411, 205, 0, 991, 992, 3, 435, 217, 0, 992, 993, 3, 409, 204, 0, 993, 994, 3, 409, 204, 0, 994, 995, 3, 451, 225, 0, 995, 996, 3, 409, 204, 0, 996, 134, 1, 0, 0, 0, 997, 998, 3, 411, 205, 0, 998, 999, 3, 435, 217, 0, 999, 1000, 3, 429, 214, 0, 1000, 1001, 3, 425, 212, 0, 1001, 136, 1, 0, 0, 0, 1002, 1003, 3, 411, 205, 0, 1003, 1004, 3, 441, 220, 0, 1004, 1005, 3, 423, 211, 0, 1005, 1006, 3, 423, 211, 0, 1006, 138, 1, 0, 0, 0, 1007, 1008, 3, 411, 205, 0, 1008, 1009, 3, 441, 220, 0, 1009, 1010, 3, 427, 213, 0, 1010, 1011, 3, 405, 202, 0, 1011, 1012, 3, 439, 219, 0, 1012, 1013, 3, 417, 208, 0, 1013, 1014, 3, 429, 214, 0, 1014, 1015, 3, 427, 213, 0, 1015, 140, 1, 0, 0, 0, 1016, 1017, 3, 413, 206, 0, 1017, 1018, 3, 423, 211, 0, 1018, 1019, 3, 429, 214, 0, 1019, 1020, 3, 403, 201, 0, 1020, 1021, 3, 401, 200, 0, 1021, 1022, 3, 423, 211, 0, 1022, 142, 1, 0, 0, 0, 1023, 1024, 3, 413, 206, 0, 1024, 1025, 3, 435, 217, 0, 1025, 1026, 3, 401, 200, 0, 1026, 1027, 3, 427, 213, 0, 1027, 1028, 3, 441, 220, 0, 1028, 1029, 3, 423, 211, 0, 1029, 1030, 3, 401, 200, 0, 1030, 1031, 3, 435, 217, 0, 1031, 1032, 3, 417, 208, 0, 1032, 1033, 3, 439, 219, 0, 1033, 1034, 3, 449, 224, 0, 1034, 144, 1, 0, 0, 0, 1035, 1036, 3, 413, 206, 0, 1036, 1037, 3, 435, 217, 0, 1037, 1038, 3, 429, 214, 0, 1038, 1039, 3, 441, 220, 0, 1039, 1040, 3, 431, 215, 0, 1040, 146, 1, 0, 0, 0, 1041, 1042, 3, 415, 207, 0, 1042, 1043, 3, 401, 200, 0, 1043, 1044, 3, 443, 221, 0, 1044, 1045, 3, 417, 208, 0, 1045, 1046, 3, 427, 213, 0, 1046, 1047, 3, 413, 206, 0, 1047, 148, 1, 0, 0, 0, 1048, 1049, 3, 415, 207, 0, 1049, 1050, 3, 417, 208, 0, 1050, 1051, 3, 409, 204, 0, 1051, 1052, 3, 435, 217, 0, 1052, 1053, 3, 401, 200, 0, 1053, 1054, 3, 435, 217, 0, 1054, 1055, 3, 405, 202, 0, 1055, 1056, 3, 415, 207, 0, 1056, 1057, 3, 417, 208, 0, 1057, 1058, 3, 405, 202, 0, 1058, 1059, 3, 401, 200, 0, 1059, 1060, 3, 423, 211, 0, 1060, 150, 1, 0, 0, 0, 1061, 1062, 3, 415, 207, 0, 1062, 1063, 3, 429, 214, 0, 1063, 1064, 3, 441, 220, 0, 1064, 1065, 3, 435, 217, 0, 1065, 152, 1, 0, 0, 0, 1066, 1067, 3, 417, 208, 0, 1067, 1068, 3, 407, 203, 0, 1068, 154, 1, 0, 0, 0, 1069, 1070, 3, 417, 208, 0, 1070, 1071, 3, 411, 205, 0, 1071, 156, 1, 0, 0, 0, 1072, 1073, 3, 417, 208, 0, 1073, 1074, 3, 423, 211, 0, 1074, 1075, 3, 417, 208, 0, 1075, 1076, 3, 421, 210, 0, 1076, 1077, 3, 409, 204, 0, 1077, 158, 1, 0, 0, 0, 1078, 1079, 3, 417, 208, 0, 1079, 1080, 3, 427, 213, 0, 1080, 160, 1, 0, 0, 0, 1081, 1082, 3, 417, 208, 0, 1082, 1083, 3, 427, 213, 0, 1083, 1084, 3, 407, 203, 0, 1084, 1085, 3, 409, 204, 0, 1085, 1086, 3, 447, 223, 0, 1086, 162, 1, 0, 0, 0, 1087, 1088, 3, 417, 208, 0, 1088, 1089, 3, 427, 213, 0, 1089, 1090, 3, 411, 205, 0, 1090, 1101, 1, 0, 0, 0, 1091, 1092, 3, 417, 208, 0, 1092, 1093, 3, 427, 213, 0, 1093, 1094, 3, 411, 205, 0, 1094, 1095, 3, 417, 208, 0, 1095, 1096, 3, 427, 213, 0, 1096, 1097, 3, 417, 208, 0, 1097, 1098, 3, 439, 219, 0, 1098, 1099, 3, 449, 224, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1087, 1, 0, 0, 0, 1100, 1091, 1, 0, 0, 0, 1101, 164, 1, 0, 0, 0, 1102, 1103, 3, 417, 208, 0, 1103, 1104, 3, 427, 213, 0, 1104, 1105, 3, 419, 209, 0, 1105, 1106, 3, 409, 204, 0, 1106, 1107, 3, 405, 202, 0, 1107, 1108, 3, 439, 219, 0, 1108, 1109, 3, 417, 208, 0, 1109, 1110, 3, 443, 221, 0, 1110, 1111, 3, 409, 204, 0, 1111, 166, 1, 0, 0, 0, 1112, 1113, 3, 417, 208, 0, 1113, 1114, 3, 427, 213, 0, 1114, 1115, 3, 427, 213, 0, 1115, 1116, 3, 409, 204, 0, 1116, 1117, 3, 435, 217, 0, 1117, 168, 1, 0, 0, 0, 1118, 1119, 3, 417, 208, 0, 1119, 1120, 3, 427, 213, 0, 1120, 1121, 3, 437, 218, 0, 1121, 1122, 3, 409, 204, 0, 1122, 1123, 3, 435, 217, 0, 1123, 1124, 3, 439, 219, 0, 1124, 170, 1, 0, 0, 0, 1125, 1126, 3, 417, 208, 0, 1126, 1127, 3, 427, 213, 0, 1127, 1128, 3, 439, 219, 0, 1128, 1129, 3, 409, 204, 0, 1129, 1130, 3, 435, 217, 0, 1130, 1131, 3, 443, 221, 0, 1131, 1132, 3, 401, 200, 0, 1132, 1133, 3, 423, 211, 0, 1133, 172, 1, 0, 0, 0, 1134, 1135, 3, 417, 208, 0, 1135, 1136, 3, 427, 213, 0, 1136, 1137, 3, 439, 219, 0, 1137, 1138, 3, 429, 214, 0, 1138, 174, 1, 0, 0, 0, 1139, 1140, 3, 417, 208, 0, 1140, 1141, 3, 437, 218, 0, 1141, 176, 1, 0, 0, 0, 1142, 1143, 3, 417, 208, 0, 1143, 1144, 3, 437, 218, 0, 1144, 1145, 3, 525, 262, 0, 1145, 1146, 3, 429, 214, 0, 1146, 1147, 3, 403, 201, 0, 1147, 1148, 3, 419, 209, 0, 1148, 1149, 3, 409, 204, 0, 1149, 1150, 3, 405, 202, 0, 1150, 1151, 3, 439, 219, 0, 1151, 1152, 3, 525, 262, 0, 1152, 1153, 3, 417, 208, 0, 1153, 1154, 3, 407, 203, 0, 1154, 178, 1, 0, 0, 0, 1155, 1156, 3, 419, 209, 0, 1156, 1157, 3, 429, 214, 0, 1157, 1158, 3, 417, 208, 0, 1158, 1159, 3, 427, 213, 0, 1159, 180, 1, 0, 0, 0, 1160, 1161, 3, 421, 210, 0, 1161, 1162, 3, 409, 204, 0, 1162, 1163, 3, 449, 224, 0, 1163, 182, 1, 0, 0, 0, 1164, 1165, 3, 421, 210, 0, 1165, 1166, 3, 417, 208, 0, 1166, 1167, 3, 423, 211, 0, 1167, 1168, 3, 423, 211, 0, 1168, 184, 1, 0, 0, 0, 1169, 1170, 3, 423, 211, 0, 1170, 1171, 3, 401, 200, 0, 1171, 1172, 3, 437, 218, 0, 1172, 1173, 3, 439, 219, 0, 1173, 186, 1, 0, 0, 0, 1174, 1175, 3, 423, 211, 0, 1175, 1176, 3, 401, 200, 0, 1176, 1177, 3, 449, 224, 0, 1177, 1178, 3, 429, 214, 0, 1178, 1179, 3, 441, 220, 0, 1179, 1180, 3, 439, 219, 0, 1180, 188, 1, 0, 0, 0, 1181, 1182, 3, 423, 211, 0, 1182, 1183, 3, 409, 204, 0, 1183, 1184, 3, 401, 200, 0, 1184, 1185, 3, 407, 203, 0, 1185, 1186, 3, 417, 208, 0, 1186, 1187, 3, 427, 213, 0, 1187, 1188, 3, 413, 206, 0, 1188, 190, 1, 0, 0, 0, 1189, 1190, 3, 423, 211, 0, 1190, 1191, 3, 409, 204, 0, 1191, 1192, 3, 411, 205, 0, 1192, 1193, 3, 439, 219, 0, 1193, 192, 1, 0, 0, 0, 1194, 1195, 3, 423, 211, 0, 1195, 1196, 3, 417, 208, 0, 1196, 1197, 3, 411, 205, 0, 1197, 1198, 3, 409, 204, 0, 1198, 1199, 3, 439, 219, 0, 1199, 1200, 3, 417, 208, 0, 1200, 1201, 3, 425, 212, 0, 1201, 1202, 3, 409, 204, 0, 1202, 194, 1, 0, 0, 0, 1203, 1204, 3, 423, 211, 0, 1204, 1205, 3, 417, 208, 0, 1205, 1206, 3, 421, 210, 0, 1206, 1207, 3, 409, 204, 0, 1207, 196, 1, 0, 0, 0, 1208, 1209, 3, 423, 211, 0, 1209, 1210, 3, 417, 208, 0, 1210, 1211, 3, 425, 212, 0, 1211, 1212, 3, 417, 208, 0, 1212, 1213, 3, 439, 219, 0, 1213, 198, 1, 0, 0, 0, 1214, 1215, 3, 423, 211, 0, 1215, 1216, 3, 417, 208, 0, 1216, 1217, 3, 443, 221, 0, 1217, 1218, 3, 409, 204, 0, 1218, 200, 1, 0, 0, 0, 1219, 1220, 3, 423, 211, 0, 1220, 1221, 3, 429, 214, 0, 1221, 1222, 3, 405, 202, 0, 1222, 1223, 3, 401, 200, 0, 1223, 1224, 3, 423, 211, 0, 1224, 202, 1, 0, 0, 0, 1225, 1226, 3, 423, 211, 0, 1226, 1227, 3, 429, 214, 0, 1227, 1228, 3, 413, 206, 0, 1228, 1229, 3, 437, 218, 0, 1229, 204, 1, 0, 0, 0, 1230, 1231, 3, 425, 212, 0, 1231, 1232, 3, 401, 200, 0, 1232, 1233, 3, 439, 219, 0, 1233, 1234, 3, 409, 204, 0, 1234, 1235, 3, 435, 217, 0, 1235, 1236, 3, 417, 208, 0, 1236, 1237, 3, 401, 200, 0, 1237, 1238, 3, 423, 211, 0, 1238, 1239, 3, 417, 208, 0, 1239, 1240, 3, 451, 225, 0, 1240, 1241, 3, 409, 204, 0, 1241, 206, 1, 0, 0, 0, 1242, 1243, 3, 425, 212, 0, 1243, 1244, 3, 401, 200, 0, 1244, 1245, 3, 439, 219, 0, 1245, 1246, 3, 409, 204, 0, 1246, 1247, 3, 435, 217, 0, 1247, 1248, 3, 417, 208, 0, 1248, 1249, 3, 401, 200, 0, 1249, 1250, 3, 423, 211, 0, 1250, 1251, 3, 417, 208, 0, 1251, 1252, 3, 451, 225, 0, 1252, 1253, 3, 409, 204, 0, 1253, 1254, 3, 407, 203, 0, 1254, 208, 1, 0, 0, 0, 1255, 1256, 3, 425, 212, 0, 1256, 1257, 3, 401, 200, 0, 1257, 1258, 3, 447, 223, 0, 1258, 210, 1, 0, 0, 0, 1259, 1260, 3, 425, 212, 0, 1260, 1261, 3, 409, 204, 0, 1261, 1262, 3, 435, 217, 0, 1262, 1263, 3, 413, 206, 0, 1263, 1264, 3, 409, 204, 0, 1264, 1265, 3, 437, 218, 0, 1265, 212, 1, 0, 0, 0, 1266, 1267, 3, 425, 212, 0, 1267, 1268, 3, 417, 208, 0, 1268, 1269, 3, 427, 213, 0, 1269, 214, 1, 0, 0, 0, 1270, 1271, 3, 425, 212, 0, 1271, 1272, 3, 417, 208, 0, 1272, 1273, 3, 427, 213, 0, 1273, 1274, 3, 441, 220, 0, 1274, 1275, 3, 439, 219, 0, 1275, 1276, 3, 409, 204, 0, 1276, 216, 1, 0, 0, 0, 1277, 1278, 3, 425, 212, 0, 1278, 1279, 3, 429, 214, 0, 1279, 1280, 3, 407, 203, 0, 1280, 1281, 3, 417, 208, 0, 1281, 1282, 3, 411, 205, 0, 1282, 1283, 3, 449, 224, 0, 1283, 218, 1, 0, 0, 0, 1284, 1285, 3, 425, 212, 0, 1285, 1286, 3, 429, 214, 0, 1286, 1287, 3, 427, 213, 0, 1287, 1288, 3, 439, 219, 0, 1288, 1289, 3, 415, 207, 0, 1289, 220, 1, 0, 0, 0, 1290, 1291, 3, 425, 212, 0, 1291, 1292, 3, 429, 214, 0, 1292, 1293, 3, 443, 221, 0, 1293, 1294, 3, 409, 204, 0, 1294, 222, 1, 0, 0, 0, 1295, 1296, 3, 425, 212, 0, 1296, 1297, 3, 441, 220, 0, 1297, 1298, 3, 439, 219, 0, 1298, 1299, 3, 401, 200, 0, 1299, 1300, 3, 439, 219, 0, 1300, 1301, 3, 417, 208, 0, 1301, 1302, 3, 429, 214, 0, 1302, 1303, 3, 427, 213, 0, 1303, 224, 1, 0, 0, 0, 1304, 1305, 3, 427, 213, 0, 1305, 1306, 3, 401, 200, 0, 1306, 1307, 3, 427, 213, 0, 1307, 226, 1, 0, 0, 0, 1308, 1309, 3, 427, 213, 0, 1309, 1310, 3, 429, 214, 0, 1310, 228, 1, 0, 0, 0, 1311, 1312, 3, 427, 213, 0, 1312, 1313, 3, 429, 214, 0, 1313, 1314, 3, 439, 219, 0, 1314, 230, 1, 0, 0, 0, 1315, 1316, 3, 427, 213, 0, 1316, 1317, 3, 441, 220, 0, 1317, 1318, 3, 423, 211, 0, 1318, 1319, 3, 423, 211, 0, 1319, 232, 1, 0, 0, 0, 1320, 1321, 3, 427, 213, 0, 1321, 1322, 3, 441, 220, 0, 1322, 1323, 3, 423, 211, 0, 1323, 1324, 3, 423, 211, 0, 1324, 1325, 3, 437, 218, 0, 1325, 234, 1, 0, 0, 0, 1326, 1327, 3, 429, 214, 0, 1327, 1328, 3, 411, 205, 0, 1328, 1329, 3, 411, 205, 0, 1329, 1330, 3, 437, 218, 0, 1330, 1331, 3, 409, 204, 0, 1331, 1332, 3, 439, 219, 0, 1332, 236, 1, 0, 0, 0, 1333, 1334, 3, 429, 214, 0, 1334, 1335, 3, 427, 213, 0, 1335, 238, 1, 0, 0, 0, 1336, 1337, 3, 429, 214, 0, 1337, 1338, 3, 431, 215, 0, 1338, 1339, 3, 439, 219, 0, 1339, 1340, 3, 417, 208, 0, 1340, 1341, 3, 425, 212, 0, 1341, 1342, 3, 417, 208, 0, 1342, 1343, 3, 451, 225, 0, 1343, 1344, 3, 409, 204, 0, 1344, 240, 1, 0, 0, 0, 1345, 1346, 3, 429, 214, 0, 1346, 1347, 3, 435, 217, 0, 1347, 242, 1, 0, 0, 0, 1348, 1349, 3, 429, 214, 0, 1349, 1350, 3, 435, 217, 0, 1350, 1351, 3, 407, 203, 0, 1351, 1352, 3, 409, 204, 0, 1352, 1353, 3, 435, 217, 0, 1353, 244, 1, 0, 0, 0, 1354, 1355, 3, 429, 214, 0, 1355, 1356, 3, 441, 220, 0, 1356, 1357, 3, 439, 219, 0, 1357, 1358, 3, 409, 204, 0, 1358, 1359, 3, 435, 217, 0, 1359, 246, 1, 0, 0, 0, 1360, 1361, 3, 429, 214, 0, 1361, 1362, 3, 441, 220, 0, 1362, 1363, 3, 439, 219, 0, 1363, 1364, 3, 411, 205, 0, 1364, 1365, 3, 417, 208, 0, 1365, 1366, 3, 423, 211, 0, 1366, 1367, 3, 409, 204, 0, 1367, 248, 1, 0, 0, 0, 1368, 1369, 3, 429, 214, 0, 1369, 1370, 3, 443, 221, 0, 1370, 1371, 3, 409, 204, 0, 1371, 1372, 3, 435, 217, 0, 1372, 250, 1, 0, 0, 0, 1373, 1374, 3, 431, 215, 0, 1374, 1375, 3, 401, 200, 0, 1375, 1376, 3, 435, 217, 0, 1376, 1377, 3, 439, 219, 0, 1377, 1378, 3, 417, 208, 0, 1378, 1379, 3, 439, 219, 0, 1379, 1380, 3, 417, 208, 0, 1380, 1381, 3, 429, 214, 0, 1381, 1382, 3, 427, 213, 0, 1382, 252, 1, 0, 0, 0, 1383, 1384, 3, 431, 215, 0, 1384, 1385, 3, 429, 214, 0, 1385, 1386, 3, 431, 215, 0, 1386, 1387, 3, 441, 220, 0, 1387, 1388, 3, 423, 211, 0, 1388, 1389, 3, 401, 200, 0, 1389, 1390, 3, 439, 219, 0, 1390, 1391, 3, 409, 204, 0, 1391, 254, 1, 0, 0, 0, 1392, 1393, 3, 431, 215, 0, 1393, 1394, 3, 435, 217, 0, 1394, 1395, 3, 409, 204, 0, 1395, 1396, 3, 405, 202, 0, 1396, 1397, 3, 409, 204, 0, 1397, 1398, 3, 407, 203, 0, 1398, 1399, 3, 417, 208, 0, 1399, 1400, 3, 427, 213, 0, 1400, 1401, 3, 413, 206, 0, 1401, 256, 1, 0, 0, 0, 1402, 1403, 3, 431, 215, 0, 1403, 1404, 3, 435, 217, 0, 1404, 1405, 3, 409, 204, 0, 1405, 1406, 3, 445, 222, 0, 1406, 1407, 3, 415, 207, 0, 1407, 1408, 3, 409, 204, 0, 1408, 1409, 3, 435, 217, 0, 1409, 1410, 3, 409, 204, 0, 1410, 258, 1, 0, 0, 0, 1411, 1412, 3, 431, 215, 0, 1412, 1413, 3, 435, 217, 0, 1413, 1414, 3, 417, 208, 0, 1414, 1415, 3, 425, 212, 0, 1415, 1416, 3, 401, 200, 0, 1416, 1417, 3, 435, 217, 0, 1417, 1418, 3, 449, 224, 0, 1418, 260, 1, 0, 0, 0, 1419, 1420, 3, 431, 215, 0, 1420, 1421, 3, 435, 217, 0, 1421, 1422, 3, 429, 214, 0, 1422, 1423, 3, 419, 209, 0, 1423, 1424, 3, 409, 204, 0, 1424, 1425, 3, 405, 202, 0, 1425, 1426, 3, 439, 219, 0, 1426, 1427, 3, 417, 208, 0, 1427, 1428, 3, 429, 214, 0, 1428, 1429, 3, 427, 213, 0, 1429, 262, 1, 0, 0, 0, 1430, 1431, 3, 433, 216, 0, 1431, 1432, 3, 441, 220, 0, 1432, 1433, 3, 401, 200, 0, 1433, 1434, 3, 435, 217, 0, 1434, 1435, 3, 439, 219, 0, 1435, 1436, 3, 409, 204, 0, 1436, 1437, 3, 435, 217, 0, 1437, 264, 1, 0, 0, 0, 1438, 1439, 3, 435, 217, 0, 1439, 1440, 3, 401, 200, 0, 1440, 1441, 3, 427, 213, 0, 1441, 1442, 3, 413, 206, 0, 1442, 1443, 3, 409, 204, 0, 1443, 266, 1, 0, 0, 0, 1444, 1445, 3, 435, 217, 0, 1445, 1446, 3, 409, 204, 0, 1446, 1447, 3, 423, 211, 0, 1447, 1448, 3, 429, 214, 0, 1448, 1449, 3, 401, 200, 0, 1449, 1450, 3, 407, 203, 0, 1450, 268, 1, 0, 0, 0, 1451, 1452, 3, 435, 217, 0, 1452, 1453, 3, 409, 204, 0, 1453, 1454, 3, 425, 212, 0, 1454, 1455, 3, 429, 214, 0, 1455, 1456, 3, 443, 221, 0, 1456, 1457, 3, 409, 204, 0, 1457, 270, 1, 0, 0, 0, 1458, 1459, 3, 435, 217, 0, 1459, 1460, 3, 409, 204, 0, 1460, 1461, 3, 427, 213, 0, 1461, 1462, 3, 401, 200, 0, 1462, 1463, 3, 425, 212, 0, 1463, 1464, 3, 409, 204, 0, 1464, 272, 1, 0, 0, 0, 1465, 1466, 3, 435, 217, 0, 1466, 1467, 3, 409, 204, 0, 1467, 1468, 3, 431, 215, 0, 1468, 1469, 3, 423, 211, 0, 1469, 1470, 3, 401, 200, 0, 1470, 1471, 3, 405, 202, 0, 1471, 1472, 3, 409, 204, 0, 1472, 274, 1, 0, 0, 0, 1473, 1474, 3, 435, 217, 0, 1474, 1475, 3, 409, 204, 0, 1475, 1476, 3, 431, 215, 0, 1476, 1477, 3, 423, 211, 0, 1477, 1478, 3, 417, 208, 0, 1478, 1479, 3, 405, 202, 0, 1479, 1480, 3, 401, 200, 0, 1480, 276, 1, 0, 0, 0, 1481, 1482, 3, 435, 217, 0, 1482, 1483, 3, 409, 204, 0, 1483, 1484, 3, 431, 215, 0, 1484, 1485, 3, 423, 211, 0, 1485, 1486, 3, 417, 208, 0, 1486, 1487, 3, 405, 202, 0, 1487, 1488, 3, 401, 200, 0, 1488, 1489, 3, 439, 219, 0, 1489, 1490, 3, 409, 204, 0, 1490, 1491, 3, 407, 203, 0, 1491, 278, 1, 0, 0, 0, 1492, 1493, 3, 435, 217, 0, 1493, 1494, 3, 417, 208, 0, 1494, 1495, 3, 413, 206, 0, 1495, 1496, 3, 415, 207, 0, 1496, 1497, 3, 439, 219, 0, 1497, 280, 1, 0, 0, 0, 1498, 1499, 3, 435, 217, 0, 1499, 1500, 3, 429, 214, 0, 1500, 1501, 3, 423, 211, 0, 1501, 1502, 3, 423, 211, 0, 1502, 1503, 3, 441, 220, 0, 1503, 1504, 3, 431, 215, 0, 1504, 282, 1, 0, 0, 0, 1505, 1506, 3, 435, 217, 0, 1506, 1507, 3, 429, 214, 0, 1507, 1508, 3, 445, 222, 0, 1508, 284, 1, 0, 0, 0, 1509, 1510, 3, 435, 217, 0, 1510, 1511, 3, 429, 214, 0, 1511, 1512, 3, 445, 222, 0, 1512, 1513, 3, 437, 218, 0, 1513, 286, 1, 0, 0, 0, 1514, 1515, 3, 437, 218, 0, 1515, 1516, 3, 401, 200, 0, 1516, 1517, 3, 425, 212, 0, 1517, 1518, 3, 431, 215, 0, 1518, 1519, 3, 423, 211, 0, 1519, 1520, 3, 409, 204, 0, 1520, 288, 1, 0, 0, 0, 1521, 1522, 3, 437, 218, 0, 1522, 1523, 3, 409, 204, 0, 1523, 1524, 3, 405, 202, 0, 1524, 1525, 3, 429, 214, 0, 1525, 1526, 3, 427, 213, 0, 1526, 1527, 3, 407, 203, 0, 1527, 290, 1, 0, 0, 0, 1528, 1529, 3, 437, 218, 0, 1529, 1530, 3, 409, 204, 0, 1530, 1531, 3, 423, 211, 0, 1531, 1532, 3, 409, 204, 0, 1532, 1533, 3, 405, 202, 0, 1533, 1534, 3, 439, 219, 0, 1534, 292, 1, 0, 0, 0, 1535, 1536, 3, 437, 218, 0, 1536, 1537, 3, 409, 204, 0, 1537, 1538, 3, 425, 212, 0, 1538, 1539, 3, 417, 208, 0, 1539, 294, 1, 0, 0, 0, 1540, 1541, 3, 437, 218, 0, 1541, 1542, 3, 409, 204, 0, 1542, 1543, 3, 427, 213, 0, 1543, 1544, 3, 407, 203, 0, 1544, 1545, 3, 437, 218, 0, 1545, 296, 1, 0, 0, 0, 1546, 1547, 3, 437, 218, 0, 1547, 1548, 3, 409, 204, 0, 1548, 1549, 3, 439, 219, 0, 1549, 298, 1, 0, 0, 0, 1550, 1551, 3, 437, 218, 0, 1551, 1552, 3, 409, 204, 0, 1552, 1553, 3, 439, 219, 0, 1553, 1554, 3, 439, 219, 0, 1554, 1555, 3, 417, 208, 0, 1555, 1556, 3, 427, 213, 0, 1556, 1557, 3, 413, 206, 0, 1557, 1558, 3, 437, 218, 0, 1558, 300, 1, 0, 0, 0, 1559, 1560, 3, 437, 218, 0, 1560, 1561, 3, 415, 207, 0, 1561, 1562, 3, 429, 214, 0, 1562, 1563, 3, 445, 222, 0, 1563, 302, 1, 0, 0, 0, 1564, 1565, 3, 437, 218, 0, 1565, 1566, 3, 429, 214, 0, 1566, 1567, 3, 441, 220, 0, 1567, 1568, 3, 435, 217, 0, 1568, 1569, 3, 405, 202, 0, 1569, 1570, 3, 409, 204, 0, 1570, 304, 1, 0, 0, 0, 1571, 1572, 3, 437, 218, 0, 1572, 1573, 3, 439, 219, 0, 1573, 1574, 3, 401, 200, 0, 1574, 1575, 3, 435, 217, 0, 1575, 1576, 3, 439, 219, 0, 1576, 306, 1, 0, 0, 0, 1577, 1578, 3, 437, 218, 0, 1578, 1579, 3, 439, 219, 0, 1579, 1580, 3, 429, 214, 0, 1580, 1581, 3, 431, 215, 0, 1581, 308, 1, 0, 0, 0, 1582, 1583, 3, 437, 218, 0, 1583, 1584, 3, 441, 220, 0, 1584, 1585, 3, 403, 201, 0, 1585, 1586, 3, 437, 218, 0, 1586, 1587, 3, 439, 219, 0, 1587, 1588, 3, 435, 217, 0, 1588, 1589, 3, 417, 208, 0, 1589, 1590, 3, 427, 213, 0, 1590, 1591, 3, 413, 206, 0, 1591, 310, 1, 0, 0, 0, 1592, 1593, 3, 437, 218, 0, 1593, 1594, 3, 449, 224, 0, 1594, 1595, 3, 427, 213, 0, 1595, 1596, 3, 405, 202, 0, 1596, 312, 1, 0, 0, 0, 1597, 1598, 3, 437, 218, 0, 1598, 1599, 3, 449, 224, 0, 1599, 1600, 3, 427, 213, 0, 1600, 1601, 3, 439, 219, 0, 1601, 1602, 3, 401, 200, 0, 1602, 1603, 3, 447, 223, 0, 1603, 314, 1, 0, 0, 0, 1604, 1605, 3, 437, 218, 0, 1605, 1606, 3, 449, 224, 0, 1606, 1607, 3, 437, 218, 0, 1607, 1608, 3, 439, 219, 0, 1608, 1609, 3, 409, 204, 0, 1609, 1610, 3, 425, 212, 0, 1610, 316, 1, 0, 0, 0, 1611, 1612, 3, 439, 219, 0, 1612, 1613, 3, 401, 200, 0, 1613, 1614, 3, 403, 201, 0, 1614, 1615, 3, 423, 211, 0, 1615, 1616, 3, 409, 204, 0, 1616, 318, 1, 0, 0, 0, 1617, 1618, 3, 439, 219, 0, 1618, 1619, 3, 401, 200, 0, 1619, 1620, 3, 403, 201, 0, 1620, 1621, 3, 423, 211, 0, 1621, 1622, 3, 409, 204, 0, 1622, 1623, 3, 437, 218, 0, 1623, 320, 1, 0, 0, 0, 1624, 1625, 3, 439, 219, 0, 1625, 1626, 3, 409, 204, 0, 1626, 1627, 3, 425, 212, 0, 1627, 1628, 3, 431, 215, 0, 1628, 1629, 3, 429, 214, 0, 1629, 1630, 3, 435, 217, 0, 1630, 1631, 3, 401, 200, 0, 1631, 1632, 3, 435, 217, 0, 1632, 1633, 3, 449, 224, 0, 1633, 322, 1, 0, 0, 0, 1634, 1635, 3, 439, 219, 0, 1635, 1636, 3, 409, 204, 0, 1636, 1637, 3, 437, 218, 0, 1637, 1638, 3, 439, 219, 0, 1638, 324, 1, 0, 0, 0, 1639, 1640, 3, 439, 219, 0, 1640, 1641, 3, 415, 207, 0, 1641, 1642, 3, 409, 204, 0, 1642, 1643, 3, 427, 213, 0, 1643, 326, 1, 0, 0, 0, 1644, 1645, 3, 439, 219, 0, 1645, 1646, 3, 417, 208, 0, 1646, 1647, 3, 409, 204, 0, 1647, 1648, 3, 437, 218, 0, 1648, 328, 1, 0, 0, 0, 1649, 1650, 3, 439, 219, 0, 1650, 1651, 3, 417, 208, 0, 1651, 1652, 3, 425, 212, 0, 1652, 1653, 3, 409, 204, 0, 1653, 1654, 3, 429, 214, 0, 1654, 1655, 3, 441, 220, 0, 1655, 1656, 3, 439, 219, 0, 1656, 330, 1, 0, 0, 0, 1657, 1658, 3, 439, 219, 0, 1658, 1659, 3, 417, 208, 0, 1659, 1660, 3, 425, 212, 0, 1660, 1661, 3, 409, 204, 0, 1661, 1662, 3, 437, 218, 0, 1662, 1663, 3, 439, 219, 0, 1663, 1664, 3, 401, 200, 0, 1664, 1665, 3, 425, 212, 0, 1665, 1666, 3, 431, 215, 0, 1666, 332, 1, 0, 0, 0, 1667, 1668, 3, 439, 219, 0, 1668, 1669, 3, 429, 214, 0, 1669, 334, 1, 0, 0, 0, 1670, 1671, 3, 439, 219, 0, 1671, 1672, 3, 429, 214, 0, 1672, 1673, 3, 431, 215, 0, 1673, 336, 1, 0, 0, 0, 1674, 1675, 3, 439, 219, 0, 1675, 1676, 3, 429, 214, 0, 1676, 1677, 3, 439, 219, 0, 1677, 1678, 3, 401, 200, 0, 1678, 1679, 3, 423, 211, 0, 1679, 1680, 3, 437, 218, 0, 1680, 338, 1, 0, 0, 0, 1681, 1682, 3, 439, 219, 0, 1682, 1683, 3, 435, 217, 0, 1683, 1684, 3, 401, 200, 0, 1684, 1685, 3, 417, 208, 0, 1685, 1686, 3, 423, 211, 0, 1686, 1687, 3, 417, 208, 0, 1687, 1688, 3, 427, 213, 0, 1688, 1689, 3, 413, 206, 0, 1689, 340, 1, 0, 0, 0, 1690, 1691, 3, 439, 219, 0, 1691, 1692, 3, 435, 217, 0, 1692, 1693, 3, 417, 208, 0, 1693, 1694, 3, 425, 212, 0, 1694, 342, 1, 0, 0, 0, 1695, 1696, 3, 439, 219, 0, 1696, 1697, 3, 435, 217, 0, 1697, 1698, 3, 441, 220, 0, 1698, 1699, 3, 427, 213, 0, 1699, 1700, 3, 405, 202, 0, 1700, 1701, 3, 401, 200, 0, 1701, 1702, 3, 439, 219, 0, 1702, 1703, 3, 409, 204, 0, 1703, 344, 1, 0, 0, 0, 1704, 1705, 3, 439, 219, 0, 1705, 1706, 3, 439, 219, 0, 1706, 1707, 3, 423, 211, 0, 1707, 346, 1, 0, 0, 0, 1708, 1709, 3, 439, 219, 0, 1709, 1710, 3, 449, 224, 0, 1710, 1711, 3, 431, 215, 0, 1711, 1712, 3, 409, 204, 0, 1712, 348, 1, 0, 0, 0, 1713, 1714, 3, 441, 220, 0, 1714, 1715, 3, 427, 213, 0, 1715, 1716, 3, 403, 201, 0, 1716, 1717, 3, 429, 214, 0, 1717, 1718, 3, 441, 220, 0, 1718, 1719, 3, 427, 213, 0, 1719, 1720, 3, 407, 203, 0, 1720, 1721, 3, 409, 204, 0, 1721, 1722, 3, 407, 203, 0, 1722, 350, 1, 0, 0, 0, 1723, 1724, 3, 441, 220, 0, 1724, 1725, 3, 427, 213, 0, 1725, 1726, 3, 417, 208, 0, 1726, 1727, 3, 429, 214, 0, 1727, 1728, 3, 427, 213, 0, 1728, 352, 1, 0, 0, 0, 1729, 1730, 3, 441, 220, 0, 1730, 1731, 3, 431, 215, 0, 1731, 1732, 3, 407, 203, 0, 1732, 1733, 3, 401, 200, 0, 1733, 1734, 3, 439, 219, 0, 1734, 1735, 3, 409, 204, 0, 1735, 354, 1, 0, 0, 0, 1736, 1737, 3, 441, 220, 0, 1737, 1738, 3, 437, 218, 0, 1738, 1739, 3, 409, 204, 0, 1739, 356, 1, 0, 0, 0, 1740, 1741, 3, 441, 220, 0, 1741, 1742, 3, 437, 218, 0, 1742, 1743, 3, 417, 208, 0, 1743, 1744, 3, 427, 213, 0, 1744, 1745, 3, 413, 206, 0, 1745, 358, 1, 0, 0, 0, 1746, 1747, 3, 441, 220, 0, 1747, 1748, 3, 441, 220, 0, 1748, 1749, 3, 417, 208, 0, 1749, 1750, 3, 407, 203, 0, 1750, 360, 1, 0, 0, 0, 1751, 1752, 3, 443, 221, 0, 1752, 1753, 3, 401, 200, 0, 1753, 1754, 3, 423, 211, 0, 1754, 1755, 3, 441, 220, 0, 1755, 1756, 3, 409, 204, 0, 1756, 1757, 3, 437, 218, 0, 1757, 362, 1, 0, 0, 0, 1758, 1759, 3, 443, 221, 0, 1759, 1760, 3, 417, 208, 0, 1760, 1761, 3, 409, 204, 0, 1761, 1762, 3, 445, 222, 0, 1762, 364, 1, 0, 0, 0, 1763, 1764, 3, 443, 221, 0, 1764, 1765, 3, 429, 214, 0, 1765, 1766, 3, 423, 211, 0, 1766, 1767, 3, 441, 220, 0, 1767, 1768, 3, 425, 212, 0, 1768, 1769, 3, 409, 204, 0, 1769, 366, 1, 0, 0, 0, 1770, 1771, 3, 445, 222, 0, 1771, 1772, 3, 401, 200, 0, 1772, 1773, 3, 439, 219, 0, 1773, 1774, 3, 405, 202, 0, 1774, 1775, 3, 415, 207, 0, 1775, 368, 1, 0, 0, 0, 1776, 1777, 3, 445, 222, 0, 1777, 1778, 3, 409, 204, 0, 1778, 1779, 3, 409, 204, 0, 1779, 1780, 3, 421, 210, 0, 1780, 370, 1, 0, 0, 0, 1781, 1782, 3, 445, 222, 0, 1782, 1783, 3, 415, 207, 0, 1783, 1784, 3, 409, 204, 0, 1784, 1785, 3, 427, 213, 0, 1785, 372, 1, 0, 0, 0, 1786, 1787, 3, 445, 222, 0, 1787, 1788, 3, 415, 207, 0, 1788, 1789, 3, 409, 204, 0, 1789, 1790, 3, 435, 217, 0, 1790, 1791, 3, 409, 204, 0, 1791, 374, 1, 0, 0, 0, 1792, 1793, 3, 445, 222, 0, 1793, 1794, 3, 417, 208, 0, 1794, 1795, 3, 427, 213, 0, 1795, 1796, 3, 407, 203, 0, 1796, 1797, 3, 429, 214, 0, 1797, 1798, 3, 445, 222, 0, 1798, 376, 1, 0, 0, 0, 1799, 1800, 3, 445, 222, 0, 1800, 1801, 3, 417, 208, 0, 1801, 1802, 3, 439, 219, 0, 1802, 1803, 3, 415, 207, 0, 1803, 378, 1, 0, 0, 0, 1804, 1805, 3, 449, 224, 0, 1805, 1806, 3, 409, 204, 0, 1806, 1807, 3, 401, 200, 0, 1807, 1808, 3, 435, 217, 0, 1808, 1815, 1, 0, 0, 0, 1809, 1810, 3, 449, 224, 0, 1810, 1811, 3, 449, 224, 0, 1811, 1812, 3, 449, 224, 0, 1812, 1813, 3, 449, 224, 0, 1813, 1815, 1, 0, 0, 0, 1814, 1804, 1, 0, 0, 0, 1814, 1809, 1, 0, 0, 0, 1815, 380, 1, 0, 0, 0, 1816, 1817, 5, 102, 0, 0, 1817, 1818, 5, 97, 0, 0, 1818, 1819, 5, 108, 0, 0, 1819, 1820, 5, 115, 0, 0, 1820, 1821, 5, 101, 0, 0, 1821, 382, 1, 0, 0, 0, 1822, 1823, 5, 116, 0, 0, 1823, 1824, 5, 114, 0, 0, 1824, 1825, 5, 117, 0, 0, 1825, 1826, 5, 101, 0, 0, 1826, 384, 1, 0, 0, 0, 1827, 1828, 3, 467, 233, 0, 1828, 1829, 3, 403, 201, 0, 1829, 1858, 1, 0, 0, 0, 1830, 1831, 3, 467, 233, 0, 1831, 1832, 3, 411, 205, 0, 1832, 1858, 1, 0, 0, 0, 1833, 1834, 3, 467, 233, 0, 1834, 1835, 3, 435, 217, 0, 1835, 1858, 1, 0, 0, 0, 1836, 1837, 3, 467, 233, 0, 1837, 1838, 3, 427, 213, 0, 1838, 1858, 1, 0, 0, 0, 1839, 1840, 3, 467, 233, 0, 1840, 1841, 3, 439, 219, 0, 1841, 1858, 1, 0, 0, 0, 1842, 1843, 3, 467, 233, 0, 1843, 1844, 5, 48, 0, 0, 1844, 1858, 1, 0, 0, 0, 1845, 1846, 3, 467, 233, 0, 1846, 1847, 3, 401, 200, 0, 1847, 1858, 1, 0, 0, 0, 1848, 1849, 3, 467, 233, 0, 1849, 1850, 3, 443, 221, 0, 1850, 1858, 1, 0, 0, 0, 1851, 1852, 3, 467, 233, 0, 1852, 1853, 3, 467, 233, 0, 1853, 1858, 1, 0, 0, 0, 1854, 1855, 3, 467, 233, 0, 1855, 1856, 3, 513, 256, 0, 1856, 1858, 1, 0, 0, 0, 1857, 1827, 1, 0, 0, 0, 1857, 1830, 1, 0, 0, 0, 1857, 1833, 1, 0, 0, 0, 1857, 1836, 1, 0, 0, 0, 1857, 1839, 1, 0, 0, 0, 1857, 1842, 1, 0, 0, 0, 1857, 1845, 1, 0, 0, 0, 1857, 1848, 1, 0, 0, 0, 1857, 1851, 1, 0, 0, 0, 1857, 1854, 1, 0, 0, 0, 1858, 386, 1, 0, 0, 0, 1859, 1863, 3, 453, 226, 0, 1860, 1863, 3, 525, 262, 0, 1861, 1863, 3, 477, 238, 0, 1862, 1859, 1, 0, 0, 0, 1862, 1860, 1, 0, 0, 0, 1862, 1861, 1, 0, 0, 0, 1863, 1870, 1, 0, 0, 0, 1864, 1869, 3, 453, 226, 0, 1865, 1869, 3, 525, 262, 0, 1866, 1869, 3, 457, 228, 0, 1867, 1869, 3, 477, 238, 0, 1868, 1864, 1, 0, 0, 0, 1868, 1865, 1, 0, 0, 0, 1868, 1866, 1, 0, 0, 0, 1868, 1867, 1, 0, 0, 0, 1869, 1872, 1, 0, 0, 0, 1870, 1868, 1, 0, 0, 0, 1870, 1871, 1, 0, 0, 0, 1871, 1900, 1, 0, 0, 0, 1872, 1870, 1, 0, 0, 0, 1873, 1881, 3, 465, 232, 0, 1874, 1880, 8, 0, 0, 0, 1875, 1880, 3, 385, 192, 0, 1876, 1877, 3, 465, 232, 0, 1877, 1878, 3, 465, 232, 0, 1878, 1880, 1, 0, 0, 0, 1879, 1874, 1, 0, 0, 0, 1879, 1875, 1, 0, 0, 0, 1879, 1876, 1, 0, 0, 0, 1880, 1883, 1, 0, 0, 0, 1881, 1879, 1, 0, 0, 0, 1881, 1882, 1, 0, 0, 0, 1882, 1884, 1, 0, 0, 0, 1883, 1881, 1, 0, 0, 0, 1884, 1885, 3, 465, 232, 0, 1885, 1900, 1, 0, 0, 0, 1886, 1894, 3, 511, 255, 0, 1887, 1893, 8, 1, 0, 0, 1888, 1893, 3, 385, 192, 0, 1889, 1890, 3, 511, 255, 0, 1890, 1891, 3, 511, 255, 0, 1891, 1893, 1, 0, 0, 0, 1892, 1887, 1, 0, 0, 0, 1892, 1888, 1, 0, 0, 0, 1892, 1889, 1, 0, 0, 0, 1893, 1896, 1, 0, 0, 0, 1894, 1892, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1897, 1, 0, 0, 0, 1896, 1894, 1, 0, 0, 0, 1897, 1898, 3, 511, 255, 0, 1898, 1900, 1, 0, 0, 0, 1899, 1862, 1, 0, 0, 0, 1899, 1873, 1, 0, 0, 0, 1899, 1886, 1, 0, 0, 0, 1900, 388, 1, 0, 0, 0, 1901, 1902, 3, 395, 197, 0, 1902, 1906, 3, 479, 239, 0, 1903, 1905, 3, 459, 229, 0, 1904, 1903, 1, 0, 0, 0, 1905, 1908, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1911, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1909, 1912, 3, 431, 215, 0, 1910, 1912, 3, 409, 204, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1910, 1, 0, 0, 0, 1912, 1915, 1, 0, 0, 0, 1913, 1916, 3, 507, 253, 0, 1914, 1916, 3, 475, 237, 0, 1915, 1913, 1, 0, 0, 0, 1915, 1914, 1, 0, 0, 0, 1915, 1916, 1, 0, 0, 0, 1916, 1918, 1, 0, 0, 0, 1917, 1919, 3, 457, 228, 0, 1918, 1917, 1, 0, 0, 0, 1919, 1920, 1, 0, 0, 0, 1920, 1918, 1, 0, 0, 0, 1920, 1921, 1, 0, 0, 0, 1921, 1978, 1, 0, 0, 0, 1922, 1925, 3, 395, 197, 0, 1923, 1926, 3, 431, 215, 0, 1924, 1926, 3, 409, 204, 0, 1925, 1923, 1, 0, 0, 0, 1925, 1924, 1, 0, 0, 0, 1926, 1929, 1, 0, 0, 0, 1927, 1930, 3, 507, 253, 0, 1928, 1930, 3, 475, 237, 0, 1929, 1927, 1, 0, 0, 0, 1929, 1928, 1, 0, 0, 0, 1929, 1930, 1, 0, 0, 0, 1930, 1932, 1, 0, 0, 0, 1931, 1933, 3, 457, 228, 0, 1932, 1931, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1932, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1978, 1, 0, 0, 0, 1936, 1937, 3, 393, 196, 0, 1937, 1941, 3, 479, 239, 0, 1938, 1940, 3, 457, 228, 0, 1939, 1938, 1, 0, 0, 0, 1940, 1943, 1, 0, 0, 0, 1941, 1939, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1944, 1, 0, 0, 0, 1943, 1941, 1, 0, 0, 0, 1944, 1947, 3, 409, 204, 0, 1945, 1948, 3, 507, 253, 0, 1946, 1948, 3, 475, 237, 0, 1947, 1945, 1, 0, 0, 0, 1947, 1946, 1, 0, 0, 0, 1947, 1948, 1, 0, 0, 0, 1948, 1950, 1, 0, 0, 0, 1949, 1951, 3, 457, 228, 0, 1950, 1949, 1, 0, 0, 0, 1951, 1952, 1, 0, 0, 0, 1952, 1950, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1978, 1, 0, 0, 0, 1954, 1955, 3, 479, 239, 0, 1955, 1956, 3, 393, 196, 0, 1956, 1959, 3, 409, 204, 0, 1957, 1960, 3, 507, 253, 0, 1958, 1960, 3, 475, 237, 0, 1959, 1957, 1, 0, 0, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1962, 1, 0, 0, 0, 1961, 1963, 3, 457, 228, 0, 1962, 1961, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1962, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1978, 1, 0, 0, 0, 1966, 1967, 3, 393, 196, 0, 1967, 1970, 3, 409, 204, 0, 1968, 1971, 3, 507, 253, 0, 1969, 1971, 3, 475, 237, 0, 1970, 1968, 1, 0, 0, 0, 1970, 1969, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 1973, 1, 0, 0, 0, 1972, 1974, 3, 457, 228, 0, 1973, 1972, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1973, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1978, 1, 0, 0, 0, 1977, 1901, 1, 0, 0, 0, 1977, 1922, 1, 0, 0, 0, 1977, 1936, 1, 0, 0, 0, 1977, 1954, 1, 0, 0, 0, 1977, 1966, 1, 0, 0, 0, 1978, 390, 1, 0, 0, 0, 1979, 1981, 5, 48, 0, 0, 1980, 1982, 3, 455, 227, 0, 1981, 1980, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1981, 1, 0, 0, 0, 1983, 1984, 1, 0, 0, 0, 1984, 392, 1, 0, 0, 0, 1985, 1987, 3, 457, 228, 0, 1986, 1985, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1988, 1989, 1, 0, 0, 0, 1989, 394, 1, 0, 0, 0, 1990, 1991, 5, 48, 0, 0, 1991, 1993, 3, 447, 223, 0, 1992, 1994, 3, 459, 229, 0, 1993, 1992, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1993, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 396, 1, 0, 0, 0, 1997, 2005, 3, 513, 256, 0, 1998, 2004, 8, 2, 0, 0, 1999, 2004, 3, 385, 192, 0, 2000, 2001, 3, 513, 256, 0, 2001, 2002, 3, 513, 256, 0, 2002, 2004, 1, 0, 0, 0, 2003, 1998, 1, 0, 0, 0, 2003, 1999, 1, 0, 0, 0, 2003, 2000, 1, 0, 0, 0, 2004, 2007, 1, 0, 0, 0, 2005, 2003, 1, 0, 0, 0, 2005, 2006, 1, 0, 0, 0, 2006, 2008, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, 2008, 2009, 3, 513, 256, 0, 2009, 398, 1, 0, 0, 0, 2010, 2018, 3, 491, 245, 0, 2011, 2017, 8, 3, 0, 0, 2012, 2017, 3, 385, 192, 0, 2013, 2014, 3, 491, 245, 0, 2014, 2015, 3, 491, 245, 0, 2015, 2017, 1, 0, 0, 0, 2016, 2011, 1, 0, 0, 0, 2016, 2012, 1, 0, 0, 0, 2016, 2013, 1, 0, 0, 0, 2017, 2020, 1, 0, 0, 0, 2018, 2016, 1, 0, 0, 0, 2018, 2019, 1, 0, 0, 0, 2019, 2021, 1, 0, 0, 0, 2020, 2018, 1, 0, 0, 0, 2021, 2022, 3, 515, 257, 0, 2022, 400, 1, 0, 0, 0, 2023, 2024, 7, 4, 0, 0, 2024, 402, 1, 0, 0, 0, 2025, 2026, 7, 5, 0, 0, 2026, 404, 1, 0, 0, 0, 2027, 2028, 7, 6, 0, 0, 2028, 406, 1, 0, 0, 0, 2029, 2030, 7, 7, 0, 0, 2030, 408, 1, 0, 0, 0, 2031, 2032, 7, 8, 0, 0, 2032, 410, 1, 0, 0, 0, 2033, 2034, 7, 9, 0, 0, 2034, 412, 1, 0, 0, 0, 2035, 2036, 7, 10, 0, 0, 2036, 414, 1, 0, 0, 0, 2037, 2038, 7, 11, 0, 0, 2038, 416, 1, 0, 0, 0, 2039, 2040, 7, 12, 0, 0, 2040, 418, 1, 0, 0, 0, 2041, 2042, 7, 13, 0, 0, 2042, 420, 1, 0, 0, 0, 2043, 2044, 7, 14, 0, 0, 2044, 422, 1, 0, 0, 0, 2045, 2046, 7, 15, 0, 0, 2046, 424, 1, 0, 0, 0, 2047, 2048, 7, 16, 0, 0, 2048, 426, 1, 0, 0, 0, 2049, 2050, 7, 17, 0, 0, 2050, 428, 1, 0, 0, 0, 2051, 2052, 7, 18, 0, 0, 2052, 430, 1, 0, 0, 0, 2053, 2054, 7, 19, 0, 0, 2054, 432, 1, 0, 0, 0, 2055, 2056, 7, 20, 0, 0, 2056, 434, 1, 0, 0, 0, 2057, 2058, 7, 21, 0, 0, 2058, 436, 1, 0, 0, 0, 2059, 2060, 7, 22, 0, 0, 2060, 438, 1, 0, 0, 0, 2061, 2062, 7, 23, 0, 0, 2062, 440, 1, 0, 0, 0, 2063, 2064, 7, 24, 0, 0, 2064, 442, 1, 0, 0, 0, 2065, 2066, 7, 25, 0, 0, 2066, 444, 1, 0, 0, 0, 2067, 2068, 7, 26, 0, 0, 2068, 446, 1, 0, 0, 0, 2069, 2070, 7, 27, 0, 0, 2070, 448, 1, 0, 0, 0, 2071, 2072, 7, 28, 0, 0, 2072, 450, 1, 0, 0, 0, 2073, 2074, 7, 29, 0, 0, 2074, 452, 1, 0, 0, 0, 2075, 2076, 7, 30, 0, 0, 2076, 454, 1, 0, 0, 0, 2077, 2078, 7, 31, 0, 0, 2078, 456, 1, 0, 0, 0, 2079, 2080, 7, 32, 0, 0, 2080, 458, 1, 0, 0, 0, 2081, 2082, 7, 33, 0, 0, 2082, 460, 1, 0, 0, 0, 2083, 2084, 5, 45, 0, 0, 2084, 2085, 5, 62, 0, 0, 2085, 462, 1, 0, 0, 0, 2086, 2087, 5, 42, 0, 0, 2087, 464, 1, 0, 0, 0, 2088, 2089, 5, 96, 0, 0, 2089, 466, 1, 0, 0, 0, 2090, 2091, 5, 92, 0, 0, 2091, 468, 1, 0, 0, 0, 2092, 2093, 5, 58, 0, 0, 2093, 470, 1, 0, 0, 0, 2094, 2095, 5, 44, 0, 0, 2095, 472, 1, 0, 0, 0, 2096, 2097, 5, 124, 0, 0, 2097, 2098, 5, 124, 0, 0, 2098, 474, 1, 0, 0, 0, 2099, 2100, 5, 45, 0, 0, 2100, 476, 1, 0, 0, 0, 2101, 2102, 5, 36, 0, 0, 2102, 478, 1, 0, 0, 0, 2103, 2104, 5, 46, 0, 0, 2104, 480, 1, 0, 0, 0, 2105, 2106, 5, 61, 0, 0, 2106, 2107, 5, 61, 0, 0, 2107, 482, 1, 0, 0, 0, 2108, 2109, 5, 61, 0, 0, 2109, 484, 1, 0, 0, 0, 2110, 2111, 5, 62, 0, 0, 2111, 2112, 5, 61, 0, 0, 2112, 486, 1, 0, 0, 0, 2113, 2114, 5, 62, 0, 0, 2114, 488, 1, 0, 0, 0, 2115, 2116, 5, 35, 0, 0, 2116, 490, 1, 0, 0, 0, 2117, 2118, 5, 123, 0, 0, 2118, 492, 1, 0, 0, 0, 2119, 2120, 5, 91, 0, 0, 2120, 494, 1, 0, 0, 0, 2121, 2122, 5, 60, 0, 0, 2122, 2123, 5, 61, 0, 0, 2123, 496, 1, 0, 0, 0, 2124, 2125, 5, 40, 0, 0, 2125, 498, 1, 0, 0, 0, 2126, 2127, 5, 60, 0, 0, 2127, 500, 1, 0, 0, 0, 2128, 2129, 5, 33, 0, 0, 2129, 2133, 5, 61, 0, 0, 2130, 2131, 5, 60, 0, 0, 2131, 2133, 5, 62, 0, 0, 2132, 2128, 1, 0, 0, 0, 2132, 2130, 1, 0, 0, 0, 2133, 502, 1, 0, 0, 0, 2134, 2135, 5, 63, 0, 0, 2135, 2136, 5, 63, 0, 0, 2136, 504, 1, 0, 0, 0, 2137, 2138, 5, 37, 0, 0, 2138, 506, 1, 0, 0, 0, 2139, 2140, 5, 43, 0, 0, 2140, 508, 1, 0, 0, 0, 2141, 2142, 5, 63, 0, 0, 2142, 510, 1, 0, 0, 0, 2143, 2144, 5, 34, 0, 0, 2144, 512, 1, 0, 0, 0, 2145, 2146, 5, 39, 0, 0, 2146, 514, 1, 0, 0, 0, 2147, 2148, 5, 125, 0, 0, 2148, 516, 1, 0, 0, 0, 2149, 2150, 5, 93, 0, 0, 2150, 518, 1, 0, 0, 0, 2151, 2152, 5, 41, 0, 0, 2152, 520, 1, 0, 0, 0, 2153, 2154, 5, 59, 0, 0, 2154, 522, 1, 0, 0, 0, 2155, 2156, 5, 47, 0, 0, 2156, 524, 1, 0, 0, 0, 2157, 2158, 5, 95, 0, 0, 2158, 526, 1, 0, 0, 0, 2159, 2160, 5, 47, 0, 0, 2160, 2161, 5, 42, 0, 0, 2161, 2165, 1, 0, 0, 0, 2162, 2164, 9, 0, 0, 0, 2163, 2162, 1, 0, 0, 0, 2164, 2167, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2165, 2163, 1, 0, 0, 0, 2166, 2168, 1, 0, 0, 0, 2167, 2165, 1, 0, 0, 0, 2168, 2169, 5, 42, 0, 0, 2169, 2170, 5, 47, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2172, 6, 263, 0, 0, 2172, 528, 1, 0, 0, 0, 2173, 2174, 5, 45, 0, 0, 2174, 2175, 5, 45, 0, 0, 2175, 2179, 1, 0, 0, 0, 2176, 2178, 8, 34, 0, 0, 2177, 2176, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 2183, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2184, 7, 35, 0, 0, 2183, 2182, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 2186, 6, 264, 0, 0, 2186, 530, 1, 0, 0, 0, 2187, 2188, 7, 36, 0, 0, 2188, 2189, 1, 0, 0, 0, 2189, 2190, 6, 265, 1, 0, 2190, 532, 1, 0, 0, 0, 39, 0, 595, 1100, 1814, 1857, 1862, 1868, 1870, 1879, 1881, 1892, 1894, 1899, 1906, 1911, 1915, 1920, 1925, 1929, 1934, 1941, 1947, 1952, 1959, 1964, 1970, 1975, 1977, 1983, 1988, 1995, 2003, 2005, 2016, 2018, 2132, 2165, 2179, 2183, 2, 6, 0, 0, 0, 1, 0] \ No newline at end of file +[4, 0, 242, 2222, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 1, 10, 3, 10, 608, 8, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 3, 81, 1113, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 3, 189, 1827, 8, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 3, 192, 1870, 8, 192, 1, 193, 1, 193, 1, 193, 3, 193, 1875, 8, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1881, 8, 193, 10, 193, 12, 193, 1884, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1892, 8, 193, 10, 193, 12, 193, 1895, 9, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 5, 193, 1905, 8, 193, 10, 193, 12, 193, 1908, 9, 193, 1, 193, 1, 193, 3, 193, 1912, 8, 193, 1, 194, 1, 194, 1, 194, 5, 194, 1917, 8, 194, 10, 194, 12, 194, 1920, 9, 194, 1, 194, 1, 194, 3, 194, 1924, 8, 194, 1, 194, 1, 194, 3, 194, 1928, 8, 194, 1, 194, 4, 194, 1931, 8, 194, 11, 194, 12, 194, 1932, 1, 194, 1, 194, 1, 194, 3, 194, 1938, 8, 194, 1, 194, 1, 194, 3, 194, 1942, 8, 194, 1, 194, 4, 194, 1945, 8, 194, 11, 194, 12, 194, 1946, 1, 194, 1, 194, 1, 194, 5, 194, 1952, 8, 194, 10, 194, 12, 194, 1955, 9, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1960, 8, 194, 1, 194, 4, 194, 1963, 8, 194, 11, 194, 12, 194, 1964, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1972, 8, 194, 1, 194, 4, 194, 1975, 8, 194, 11, 194, 12, 194, 1976, 1, 194, 1, 194, 1, 194, 1, 194, 3, 194, 1983, 8, 194, 1, 194, 4, 194, 1986, 8, 194, 11, 194, 12, 194, 1987, 3, 194, 1990, 8, 194, 1, 195, 1, 195, 4, 195, 1994, 8, 195, 11, 195, 12, 195, 1995, 1, 196, 4, 196, 1999, 8, 196, 11, 196, 12, 196, 2000, 1, 197, 1, 197, 1, 197, 4, 197, 2006, 8, 197, 11, 197, 12, 197, 2007, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 5, 198, 2016, 8, 198, 10, 198, 12, 198, 2019, 9, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 5, 199, 2029, 8, 199, 10, 199, 12, 199, 2032, 9, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 201, 1, 201, 1, 202, 1, 202, 1, 203, 1, 203, 1, 204, 1, 204, 1, 205, 1, 205, 1, 206, 1, 206, 1, 207, 1, 207, 1, 208, 1, 208, 1, 209, 1, 209, 1, 210, 1, 210, 1, 211, 1, 211, 1, 212, 1, 212, 1, 213, 1, 213, 1, 214, 1, 214, 1, 215, 1, 215, 1, 216, 1, 216, 1, 217, 1, 217, 1, 218, 1, 218, 1, 219, 1, 219, 1, 220, 1, 220, 1, 221, 1, 221, 1, 222, 1, 222, 1, 223, 1, 223, 1, 224, 1, 224, 1, 225, 1, 225, 1, 226, 1, 226, 1, 227, 1, 227, 1, 228, 1, 228, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 250, 1, 251, 1, 251, 1, 252, 1, 252, 1, 252, 1, 252, 3, 252, 2152, 8, 252, 1, 253, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 254, 1, 255, 1, 255, 1, 255, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 260, 1, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 262, 1, 263, 1, 263, 1, 264, 1, 264, 1, 265, 1, 265, 1, 266, 1, 266, 1, 267, 1, 267, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 5, 269, 2195, 8, 269, 10, 269, 12, 269, 2198, 9, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 1, 270, 1, 270, 5, 270, 2209, 8, 270, 10, 270, 12, 270, 2212, 9, 270, 1, 270, 3, 270, 2215, 8, 270, 1, 270, 1, 270, 1, 271, 1, 271, 1, 271, 1, 271, 1, 2196, 0, 272, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 0, 403, 0, 405, 0, 407, 0, 409, 0, 411, 0, 413, 0, 415, 0, 417, 0, 419, 0, 421, 0, 423, 0, 425, 0, 427, 0, 429, 0, 431, 0, 433, 0, 435, 0, 437, 0, 439, 0, 441, 0, 443, 0, 445, 0, 447, 0, 449, 0, 451, 0, 453, 0, 455, 0, 457, 0, 459, 0, 461, 201, 463, 202, 465, 203, 467, 204, 469, 205, 471, 206, 473, 207, 475, 208, 477, 209, 479, 210, 481, 211, 483, 212, 485, 213, 487, 214, 489, 215, 491, 216, 493, 217, 495, 218, 497, 219, 499, 220, 501, 221, 503, 222, 505, 223, 507, 224, 509, 225, 511, 226, 513, 227, 515, 228, 517, 229, 519, 230, 521, 231, 523, 232, 525, 233, 527, 234, 529, 235, 531, 236, 533, 237, 535, 238, 537, 239, 539, 240, 541, 241, 543, 242, 1, 0, 37, 2, 0, 92, 92, 96, 96, 2, 0, 34, 34, 92, 92, 2, 0, 39, 39, 92, 92, 2, 0, 92, 92, 125, 125, 2, 0, 65, 65, 97, 97, 2, 0, 66, 66, 98, 98, 2, 0, 67, 67, 99, 99, 2, 0, 68, 68, 100, 100, 2, 0, 69, 69, 101, 101, 2, 0, 70, 70, 102, 102, 2, 0, 71, 71, 103, 103, 2, 0, 72, 72, 104, 104, 2, 0, 73, 73, 105, 105, 2, 0, 74, 74, 106, 106, 2, 0, 75, 75, 107, 107, 2, 0, 76, 76, 108, 108, 2, 0, 77, 77, 109, 109, 2, 0, 78, 78, 110, 110, 2, 0, 79, 79, 111, 111, 2, 0, 80, 80, 112, 112, 2, 0, 81, 81, 113, 113, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 84, 84, 116, 116, 2, 0, 85, 85, 117, 117, 2, 0, 86, 86, 118, 118, 2, 0, 87, 87, 119, 119, 2, 0, 88, 88, 120, 120, 2, 0, 89, 89, 121, 121, 2, 0, 90, 90, 122, 122, 2, 0, 65, 90, 97, 122, 1, 0, 48, 55, 1, 0, 48, 57, 3, 0, 48, 57, 65, 70, 97, 102, 2, 0, 10, 10, 13, 13, 2, 1, 10, 10, 13, 13, 2, 0, 9, 13, 32, 32, 2252, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 1, 545, 1, 0, 0, 0, 3, 549, 1, 0, 0, 0, 5, 555, 1, 0, 0, 0, 7, 561, 1, 0, 0, 0, 9, 565, 1, 0, 0, 0, 11, 571, 1, 0, 0, 0, 13, 575, 1, 0, 0, 0, 15, 580, 1, 0, 0, 0, 17, 584, 1, 0, 0, 0, 19, 590, 1, 0, 0, 0, 21, 607, 1, 0, 0, 0, 23, 609, 1, 0, 0, 0, 25, 614, 1, 0, 0, 0, 27, 618, 1, 0, 0, 0, 29, 624, 1, 0, 0, 0, 31, 631, 1, 0, 0, 0, 33, 639, 1, 0, 0, 0, 35, 644, 1, 0, 0, 0, 37, 647, 1, 0, 0, 0, 39, 652, 1, 0, 0, 0, 41, 657, 1, 0, 0, 0, 43, 663, 1, 0, 0, 0, 45, 669, 1, 0, 0, 0, 47, 677, 1, 0, 0, 0, 49, 683, 1, 0, 0, 0, 51, 690, 1, 0, 0, 0, 53, 698, 1, 0, 0, 0, 55, 705, 1, 0, 0, 0, 57, 713, 1, 0, 0, 0, 59, 724, 1, 0, 0, 0, 61, 731, 1, 0, 0, 0, 63, 737, 1, 0, 0, 0, 65, 742, 1, 0, 0, 0, 67, 750, 1, 0, 0, 0, 69, 759, 1, 0, 0, 0, 71, 769, 1, 0, 0, 0, 73, 774, 1, 0, 0, 0, 75, 778, 1, 0, 0, 0, 77, 790, 1, 0, 0, 0, 79, 798, 1, 0, 0, 0, 81, 804, 1, 0, 0, 0, 83, 811, 1, 0, 0, 0, 85, 816, 1, 0, 0, 0, 87, 827, 1, 0, 0, 0, 89, 836, 1, 0, 0, 0, 91, 843, 1, 0, 0, 0, 93, 856, 1, 0, 0, 0, 95, 867, 1, 0, 0, 0, 97, 872, 1, 0, 0, 0, 99, 881, 1, 0, 0, 0, 101, 893, 1, 0, 0, 0, 103, 898, 1, 0, 0, 0, 105, 903, 1, 0, 0, 0, 107, 907, 1, 0, 0, 0, 109, 914, 1, 0, 0, 0, 111, 921, 1, 0, 0, 0, 113, 928, 1, 0, 0, 0, 115, 936, 1, 0, 0, 0, 117, 947, 1, 0, 0, 0, 119, 955, 1, 0, 0, 0, 121, 963, 1, 0, 0, 0, 123, 969, 1, 0, 0, 0, 125, 975, 1, 0, 0, 0, 127, 981, 1, 0, 0, 0, 129, 991, 1, 0, 0, 0, 131, 995, 1, 0, 0, 0, 133, 1002, 1, 0, 0, 0, 135, 1009, 1, 0, 0, 0, 137, 1014, 1, 0, 0, 0, 139, 1019, 1, 0, 0, 0, 141, 1028, 1, 0, 0, 0, 143, 1035, 1, 0, 0, 0, 145, 1047, 1, 0, 0, 0, 147, 1053, 1, 0, 0, 0, 149, 1060, 1, 0, 0, 0, 151, 1073, 1, 0, 0, 0, 153, 1078, 1, 0, 0, 0, 155, 1081, 1, 0, 0, 0, 157, 1084, 1, 0, 0, 0, 159, 1090, 1, 0, 0, 0, 161, 1093, 1, 0, 0, 0, 163, 1112, 1, 0, 0, 0, 165, 1114, 1, 0, 0, 0, 167, 1124, 1, 0, 0, 0, 169, 1130, 1, 0, 0, 0, 171, 1137, 1, 0, 0, 0, 173, 1146, 1, 0, 0, 0, 175, 1151, 1, 0, 0, 0, 177, 1154, 1, 0, 0, 0, 179, 1167, 1, 0, 0, 0, 181, 1172, 1, 0, 0, 0, 183, 1176, 1, 0, 0, 0, 185, 1181, 1, 0, 0, 0, 187, 1186, 1, 0, 0, 0, 189, 1193, 1, 0, 0, 0, 191, 1201, 1, 0, 0, 0, 193, 1206, 1, 0, 0, 0, 195, 1215, 1, 0, 0, 0, 197, 1220, 1, 0, 0, 0, 199, 1226, 1, 0, 0, 0, 201, 1231, 1, 0, 0, 0, 203, 1237, 1, 0, 0, 0, 205, 1242, 1, 0, 0, 0, 207, 1254, 1, 0, 0, 0, 209, 1267, 1, 0, 0, 0, 211, 1271, 1, 0, 0, 0, 213, 1278, 1, 0, 0, 0, 215, 1282, 1, 0, 0, 0, 217, 1289, 1, 0, 0, 0, 219, 1296, 1, 0, 0, 0, 221, 1302, 1, 0, 0, 0, 223, 1307, 1, 0, 0, 0, 225, 1316, 1, 0, 0, 0, 227, 1320, 1, 0, 0, 0, 229, 1323, 1, 0, 0, 0, 231, 1327, 1, 0, 0, 0, 233, 1332, 1, 0, 0, 0, 235, 1338, 1, 0, 0, 0, 237, 1345, 1, 0, 0, 0, 239, 1348, 1, 0, 0, 0, 241, 1357, 1, 0, 0, 0, 243, 1360, 1, 0, 0, 0, 245, 1366, 1, 0, 0, 0, 247, 1372, 1, 0, 0, 0, 249, 1380, 1, 0, 0, 0, 251, 1385, 1, 0, 0, 0, 253, 1395, 1, 0, 0, 0, 255, 1404, 1, 0, 0, 0, 257, 1414, 1, 0, 0, 0, 259, 1423, 1, 0, 0, 0, 261, 1431, 1, 0, 0, 0, 263, 1442, 1, 0, 0, 0, 265, 1450, 1, 0, 0, 0, 267, 1456, 1, 0, 0, 0, 269, 1463, 1, 0, 0, 0, 271, 1470, 1, 0, 0, 0, 273, 1477, 1, 0, 0, 0, 275, 1485, 1, 0, 0, 0, 277, 1493, 1, 0, 0, 0, 279, 1504, 1, 0, 0, 0, 281, 1510, 1, 0, 0, 0, 283, 1517, 1, 0, 0, 0, 285, 1521, 1, 0, 0, 0, 287, 1526, 1, 0, 0, 0, 289, 1533, 1, 0, 0, 0, 291, 1540, 1, 0, 0, 0, 293, 1547, 1, 0, 0, 0, 295, 1552, 1, 0, 0, 0, 297, 1558, 1, 0, 0, 0, 299, 1562, 1, 0, 0, 0, 301, 1571, 1, 0, 0, 0, 303, 1576, 1, 0, 0, 0, 305, 1583, 1, 0, 0, 0, 307, 1589, 1, 0, 0, 0, 309, 1594, 1, 0, 0, 0, 311, 1604, 1, 0, 0, 0, 313, 1609, 1, 0, 0, 0, 315, 1616, 1, 0, 0, 0, 317, 1623, 1, 0, 0, 0, 319, 1629, 1, 0, 0, 0, 321, 1636, 1, 0, 0, 0, 323, 1646, 1, 0, 0, 0, 325, 1651, 1, 0, 0, 0, 327, 1656, 1, 0, 0, 0, 329, 1661, 1, 0, 0, 0, 331, 1669, 1, 0, 0, 0, 333, 1679, 1, 0, 0, 0, 335, 1682, 1, 0, 0, 0, 337, 1686, 1, 0, 0, 0, 339, 1693, 1, 0, 0, 0, 341, 1702, 1, 0, 0, 0, 343, 1707, 1, 0, 0, 0, 345, 1716, 1, 0, 0, 0, 347, 1720, 1, 0, 0, 0, 349, 1725, 1, 0, 0, 0, 351, 1735, 1, 0, 0, 0, 353, 1741, 1, 0, 0, 0, 355, 1748, 1, 0, 0, 0, 357, 1752, 1, 0, 0, 0, 359, 1758, 1, 0, 0, 0, 361, 1763, 1, 0, 0, 0, 363, 1770, 1, 0, 0, 0, 365, 1775, 1, 0, 0, 0, 367, 1782, 1, 0, 0, 0, 369, 1788, 1, 0, 0, 0, 371, 1793, 1, 0, 0, 0, 373, 1798, 1, 0, 0, 0, 375, 1804, 1, 0, 0, 0, 377, 1811, 1, 0, 0, 0, 379, 1826, 1, 0, 0, 0, 381, 1828, 1, 0, 0, 0, 383, 1834, 1, 0, 0, 0, 385, 1869, 1, 0, 0, 0, 387, 1911, 1, 0, 0, 0, 389, 1989, 1, 0, 0, 0, 391, 1991, 1, 0, 0, 0, 393, 1998, 1, 0, 0, 0, 395, 2002, 1, 0, 0, 0, 397, 2009, 1, 0, 0, 0, 399, 2022, 1, 0, 0, 0, 401, 2035, 1, 0, 0, 0, 403, 2037, 1, 0, 0, 0, 405, 2039, 1, 0, 0, 0, 407, 2041, 1, 0, 0, 0, 409, 2043, 1, 0, 0, 0, 411, 2045, 1, 0, 0, 0, 413, 2047, 1, 0, 0, 0, 415, 2049, 1, 0, 0, 0, 417, 2051, 1, 0, 0, 0, 419, 2053, 1, 0, 0, 0, 421, 2055, 1, 0, 0, 0, 423, 2057, 1, 0, 0, 0, 425, 2059, 1, 0, 0, 0, 427, 2061, 1, 0, 0, 0, 429, 2063, 1, 0, 0, 0, 431, 2065, 1, 0, 0, 0, 433, 2067, 1, 0, 0, 0, 435, 2069, 1, 0, 0, 0, 437, 2071, 1, 0, 0, 0, 439, 2073, 1, 0, 0, 0, 441, 2075, 1, 0, 0, 0, 443, 2077, 1, 0, 0, 0, 445, 2079, 1, 0, 0, 0, 447, 2081, 1, 0, 0, 0, 449, 2083, 1, 0, 0, 0, 451, 2085, 1, 0, 0, 0, 453, 2087, 1, 0, 0, 0, 455, 2089, 1, 0, 0, 0, 457, 2091, 1, 0, 0, 0, 459, 2093, 1, 0, 0, 0, 461, 2095, 1, 0, 0, 0, 463, 2098, 1, 0, 0, 0, 465, 2100, 1, 0, 0, 0, 467, 2102, 1, 0, 0, 0, 469, 2104, 1, 0, 0, 0, 471, 2106, 1, 0, 0, 0, 473, 2108, 1, 0, 0, 0, 475, 2111, 1, 0, 0, 0, 477, 2113, 1, 0, 0, 0, 479, 2115, 1, 0, 0, 0, 481, 2117, 1, 0, 0, 0, 483, 2120, 1, 0, 0, 0, 485, 2122, 1, 0, 0, 0, 487, 2125, 1, 0, 0, 0, 489, 2127, 1, 0, 0, 0, 491, 2129, 1, 0, 0, 0, 493, 2132, 1, 0, 0, 0, 495, 2136, 1, 0, 0, 0, 497, 2138, 1, 0, 0, 0, 499, 2140, 1, 0, 0, 0, 501, 2142, 1, 0, 0, 0, 503, 2145, 1, 0, 0, 0, 505, 2151, 1, 0, 0, 0, 507, 2153, 1, 0, 0, 0, 509, 2157, 1, 0, 0, 0, 511, 2160, 1, 0, 0, 0, 513, 2163, 1, 0, 0, 0, 515, 2165, 1, 0, 0, 0, 517, 2167, 1, 0, 0, 0, 519, 2169, 1, 0, 0, 0, 521, 2171, 1, 0, 0, 0, 523, 2173, 1, 0, 0, 0, 525, 2175, 1, 0, 0, 0, 527, 2178, 1, 0, 0, 0, 529, 2180, 1, 0, 0, 0, 531, 2182, 1, 0, 0, 0, 533, 2184, 1, 0, 0, 0, 535, 2186, 1, 0, 0, 0, 537, 2188, 1, 0, 0, 0, 539, 2190, 1, 0, 0, 0, 541, 2204, 1, 0, 0, 0, 543, 2218, 1, 0, 0, 0, 545, 546, 3, 401, 200, 0, 546, 547, 3, 407, 203, 0, 547, 548, 3, 407, 203, 0, 548, 2, 1, 0, 0, 0, 549, 550, 3, 401, 200, 0, 550, 551, 3, 411, 205, 0, 551, 552, 3, 439, 219, 0, 552, 553, 3, 409, 204, 0, 553, 554, 3, 435, 217, 0, 554, 4, 1, 0, 0, 0, 555, 556, 3, 401, 200, 0, 556, 557, 3, 423, 211, 0, 557, 558, 3, 417, 208, 0, 558, 559, 3, 401, 200, 0, 559, 560, 3, 437, 218, 0, 560, 6, 1, 0, 0, 0, 561, 562, 3, 401, 200, 0, 562, 563, 3, 423, 211, 0, 563, 564, 3, 423, 211, 0, 564, 8, 1, 0, 0, 0, 565, 566, 3, 401, 200, 0, 566, 567, 3, 423, 211, 0, 567, 568, 3, 439, 219, 0, 568, 569, 3, 409, 204, 0, 569, 570, 3, 435, 217, 0, 570, 10, 1, 0, 0, 0, 571, 572, 3, 401, 200, 0, 572, 573, 3, 427, 213, 0, 573, 574, 3, 407, 203, 0, 574, 12, 1, 0, 0, 0, 575, 576, 3, 401, 200, 0, 576, 577, 3, 427, 213, 0, 577, 578, 3, 439, 219, 0, 578, 579, 3, 417, 208, 0, 579, 14, 1, 0, 0, 0, 580, 581, 3, 401, 200, 0, 581, 582, 3, 427, 213, 0, 582, 583, 3, 449, 224, 0, 583, 16, 1, 0, 0, 0, 584, 585, 3, 401, 200, 0, 585, 586, 3, 435, 217, 0, 586, 587, 3, 435, 217, 0, 587, 588, 3, 401, 200, 0, 588, 589, 3, 449, 224, 0, 589, 18, 1, 0, 0, 0, 590, 591, 3, 401, 200, 0, 591, 592, 3, 437, 218, 0, 592, 20, 1, 0, 0, 0, 593, 594, 3, 401, 200, 0, 594, 595, 3, 437, 218, 0, 595, 596, 3, 405, 202, 0, 596, 608, 1, 0, 0, 0, 597, 598, 3, 401, 200, 0, 598, 599, 3, 437, 218, 0, 599, 600, 3, 405, 202, 0, 600, 601, 3, 409, 204, 0, 601, 602, 3, 427, 213, 0, 602, 603, 3, 407, 203, 0, 603, 604, 3, 417, 208, 0, 604, 605, 3, 427, 213, 0, 605, 606, 3, 413, 206, 0, 606, 608, 1, 0, 0, 0, 607, 593, 1, 0, 0, 0, 607, 597, 1, 0, 0, 0, 608, 22, 1, 0, 0, 0, 609, 610, 3, 401, 200, 0, 610, 611, 3, 437, 218, 0, 611, 612, 3, 429, 214, 0, 612, 613, 3, 411, 205, 0, 613, 24, 1, 0, 0, 0, 614, 615, 3, 401, 200, 0, 615, 616, 3, 437, 218, 0, 616, 617, 3, 439, 219, 0, 617, 26, 1, 0, 0, 0, 618, 619, 3, 401, 200, 0, 619, 620, 3, 437, 218, 0, 620, 621, 3, 449, 224, 0, 621, 622, 3, 427, 213, 0, 622, 623, 3, 405, 202, 0, 623, 28, 1, 0, 0, 0, 624, 625, 3, 401, 200, 0, 625, 626, 3, 439, 219, 0, 626, 627, 3, 439, 219, 0, 627, 628, 3, 401, 200, 0, 628, 629, 3, 405, 202, 0, 629, 630, 3, 415, 207, 0, 630, 30, 1, 0, 0, 0, 631, 632, 3, 403, 201, 0, 632, 633, 3, 409, 204, 0, 633, 634, 3, 439, 219, 0, 634, 635, 3, 445, 222, 0, 635, 636, 3, 409, 204, 0, 636, 637, 3, 409, 204, 0, 637, 638, 3, 427, 213, 0, 638, 32, 1, 0, 0, 0, 639, 640, 3, 403, 201, 0, 640, 641, 3, 429, 214, 0, 641, 642, 3, 439, 219, 0, 642, 643, 3, 415, 207, 0, 643, 34, 1, 0, 0, 0, 644, 645, 3, 403, 201, 0, 645, 646, 3, 449, 224, 0, 646, 36, 1, 0, 0, 0, 647, 648, 3, 405, 202, 0, 648, 649, 3, 401, 200, 0, 649, 650, 3, 437, 218, 0, 650, 651, 3, 409, 204, 0, 651, 38, 1, 0, 0, 0, 652, 653, 3, 405, 202, 0, 653, 654, 3, 401, 200, 0, 654, 655, 3, 437, 218, 0, 655, 656, 3, 439, 219, 0, 656, 40, 1, 0, 0, 0, 657, 658, 3, 405, 202, 0, 658, 659, 3, 415, 207, 0, 659, 660, 3, 409, 204, 0, 660, 661, 3, 405, 202, 0, 661, 662, 3, 421, 210, 0, 662, 42, 1, 0, 0, 0, 663, 664, 3, 405, 202, 0, 664, 665, 3, 423, 211, 0, 665, 666, 3, 409, 204, 0, 666, 667, 3, 401, 200, 0, 667, 668, 3, 435, 217, 0, 668, 44, 1, 0, 0, 0, 669, 670, 3, 405, 202, 0, 670, 671, 3, 423, 211, 0, 671, 672, 3, 441, 220, 0, 672, 673, 3, 437, 218, 0, 673, 674, 3, 439, 219, 0, 674, 675, 3, 409, 204, 0, 675, 676, 3, 435, 217, 0, 676, 46, 1, 0, 0, 0, 677, 678, 3, 405, 202, 0, 678, 679, 3, 429, 214, 0, 679, 680, 3, 407, 203, 0, 680, 681, 3, 409, 204, 0, 681, 682, 3, 405, 202, 0, 682, 48, 1, 0, 0, 0, 683, 684, 3, 405, 202, 0, 684, 685, 3, 429, 214, 0, 685, 686, 3, 415, 207, 0, 686, 687, 3, 429, 214, 0, 687, 688, 3, 435, 217, 0, 688, 689, 3, 439, 219, 0, 689, 50, 1, 0, 0, 0, 690, 691, 3, 405, 202, 0, 691, 692, 3, 429, 214, 0, 692, 693, 3, 423, 211, 0, 693, 694, 3, 423, 211, 0, 694, 695, 3, 401, 200, 0, 695, 696, 3, 439, 219, 0, 696, 697, 3, 409, 204, 0, 697, 52, 1, 0, 0, 0, 698, 699, 3, 405, 202, 0, 699, 700, 3, 429, 214, 0, 700, 701, 3, 423, 211, 0, 701, 702, 3, 441, 220, 0, 702, 703, 3, 425, 212, 0, 703, 704, 3, 427, 213, 0, 704, 54, 1, 0, 0, 0, 705, 706, 3, 405, 202, 0, 706, 707, 3, 429, 214, 0, 707, 708, 3, 425, 212, 0, 708, 709, 3, 425, 212, 0, 709, 710, 3, 409, 204, 0, 710, 711, 3, 427, 213, 0, 711, 712, 3, 439, 219, 0, 712, 56, 1, 0, 0, 0, 713, 714, 3, 405, 202, 0, 714, 715, 3, 429, 214, 0, 715, 716, 3, 427, 213, 0, 716, 717, 3, 437, 218, 0, 717, 718, 3, 439, 219, 0, 718, 719, 3, 435, 217, 0, 719, 720, 3, 401, 200, 0, 720, 721, 3, 417, 208, 0, 721, 722, 3, 427, 213, 0, 722, 723, 3, 439, 219, 0, 723, 58, 1, 0, 0, 0, 724, 725, 3, 405, 202, 0, 725, 726, 3, 435, 217, 0, 726, 727, 3, 409, 204, 0, 727, 728, 3, 401, 200, 0, 728, 729, 3, 439, 219, 0, 729, 730, 3, 409, 204, 0, 730, 60, 1, 0, 0, 0, 731, 732, 3, 405, 202, 0, 732, 733, 3, 435, 217, 0, 733, 734, 3, 429, 214, 0, 734, 735, 3, 437, 218, 0, 735, 736, 3, 437, 218, 0, 736, 62, 1, 0, 0, 0, 737, 738, 3, 405, 202, 0, 738, 739, 3, 441, 220, 0, 739, 740, 3, 403, 201, 0, 740, 741, 3, 409, 204, 0, 741, 64, 1, 0, 0, 0, 742, 743, 3, 405, 202, 0, 743, 744, 3, 441, 220, 0, 744, 745, 3, 435, 217, 0, 745, 746, 3, 435, 217, 0, 746, 747, 3, 409, 204, 0, 747, 748, 3, 427, 213, 0, 748, 749, 3, 439, 219, 0, 749, 66, 1, 0, 0, 0, 750, 751, 3, 407, 203, 0, 751, 752, 3, 401, 200, 0, 752, 753, 3, 439, 219, 0, 753, 754, 3, 401, 200, 0, 754, 755, 3, 403, 201, 0, 755, 756, 3, 401, 200, 0, 756, 757, 3, 437, 218, 0, 757, 758, 3, 409, 204, 0, 758, 68, 1, 0, 0, 0, 759, 760, 3, 407, 203, 0, 760, 761, 3, 401, 200, 0, 761, 762, 3, 439, 219, 0, 762, 763, 3, 401, 200, 0, 763, 764, 3, 403, 201, 0, 764, 765, 3, 401, 200, 0, 765, 766, 3, 437, 218, 0, 766, 767, 3, 409, 204, 0, 767, 768, 3, 437, 218, 0, 768, 70, 1, 0, 0, 0, 769, 770, 3, 407, 203, 0, 770, 771, 3, 401, 200, 0, 771, 772, 3, 439, 219, 0, 772, 773, 3, 409, 204, 0, 773, 72, 1, 0, 0, 0, 774, 775, 3, 407, 203, 0, 775, 776, 3, 401, 200, 0, 776, 777, 3, 449, 224, 0, 777, 74, 1, 0, 0, 0, 778, 779, 3, 407, 203, 0, 779, 780, 3, 409, 204, 0, 780, 781, 3, 407, 203, 0, 781, 782, 3, 441, 220, 0, 782, 783, 3, 431, 215, 0, 783, 784, 3, 423, 211, 0, 784, 785, 3, 417, 208, 0, 785, 786, 3, 405, 202, 0, 786, 787, 3, 401, 200, 0, 787, 788, 3, 439, 219, 0, 788, 789, 3, 409, 204, 0, 789, 76, 1, 0, 0, 0, 790, 791, 3, 407, 203, 0, 791, 792, 3, 409, 204, 0, 792, 793, 3, 411, 205, 0, 793, 794, 3, 401, 200, 0, 794, 795, 3, 441, 220, 0, 795, 796, 3, 423, 211, 0, 796, 797, 3, 439, 219, 0, 797, 78, 1, 0, 0, 0, 798, 799, 3, 407, 203, 0, 799, 800, 3, 409, 204, 0, 800, 801, 3, 423, 211, 0, 801, 802, 3, 401, 200, 0, 802, 803, 3, 449, 224, 0, 803, 80, 1, 0, 0, 0, 804, 805, 3, 407, 203, 0, 805, 806, 3, 409, 204, 0, 806, 807, 3, 423, 211, 0, 807, 808, 3, 409, 204, 0, 808, 809, 3, 439, 219, 0, 809, 810, 3, 409, 204, 0, 810, 82, 1, 0, 0, 0, 811, 812, 3, 407, 203, 0, 812, 813, 3, 409, 204, 0, 813, 814, 3, 437, 218, 0, 814, 815, 3, 405, 202, 0, 815, 84, 1, 0, 0, 0, 816, 817, 3, 407, 203, 0, 817, 818, 3, 409, 204, 0, 818, 819, 3, 437, 218, 0, 819, 820, 3, 405, 202, 0, 820, 821, 3, 409, 204, 0, 821, 822, 3, 427, 213, 0, 822, 823, 3, 407, 203, 0, 823, 824, 3, 417, 208, 0, 824, 825, 3, 427, 213, 0, 825, 826, 3, 413, 206, 0, 826, 86, 1, 0, 0, 0, 827, 828, 3, 407, 203, 0, 828, 829, 3, 409, 204, 0, 829, 830, 3, 437, 218, 0, 830, 831, 3, 405, 202, 0, 831, 832, 3, 435, 217, 0, 832, 833, 3, 417, 208, 0, 833, 834, 3, 403, 201, 0, 834, 835, 3, 409, 204, 0, 835, 88, 1, 0, 0, 0, 836, 837, 3, 407, 203, 0, 837, 838, 3, 409, 204, 0, 838, 839, 3, 439, 219, 0, 839, 840, 3, 401, 200, 0, 840, 841, 3, 405, 202, 0, 841, 842, 3, 415, 207, 0, 842, 90, 1, 0, 0, 0, 843, 844, 3, 407, 203, 0, 844, 845, 3, 417, 208, 0, 845, 846, 3, 405, 202, 0, 846, 847, 3, 439, 219, 0, 847, 848, 3, 417, 208, 0, 848, 849, 3, 429, 214, 0, 849, 850, 3, 427, 213, 0, 850, 851, 3, 401, 200, 0, 851, 852, 3, 435, 217, 0, 852, 853, 3, 417, 208, 0, 853, 854, 3, 409, 204, 0, 854, 855, 3, 437, 218, 0, 855, 92, 1, 0, 0, 0, 856, 857, 3, 407, 203, 0, 857, 858, 3, 417, 208, 0, 858, 859, 3, 405, 202, 0, 859, 860, 3, 439, 219, 0, 860, 861, 3, 417, 208, 0, 861, 862, 3, 429, 214, 0, 862, 863, 3, 427, 213, 0, 863, 864, 3, 401, 200, 0, 864, 865, 3, 435, 217, 0, 865, 866, 3, 449, 224, 0, 866, 94, 1, 0, 0, 0, 867, 868, 3, 407, 203, 0, 868, 869, 3, 417, 208, 0, 869, 870, 3, 437, 218, 0, 870, 871, 3, 421, 210, 0, 871, 96, 1, 0, 0, 0, 872, 873, 3, 407, 203, 0, 873, 874, 3, 417, 208, 0, 874, 875, 3, 437, 218, 0, 875, 876, 3, 439, 219, 0, 876, 877, 3, 417, 208, 0, 877, 878, 3, 427, 213, 0, 878, 879, 3, 405, 202, 0, 879, 880, 3, 439, 219, 0, 880, 98, 1, 0, 0, 0, 881, 882, 3, 407, 203, 0, 882, 883, 3, 417, 208, 0, 883, 884, 3, 437, 218, 0, 884, 885, 3, 439, 219, 0, 885, 886, 3, 435, 217, 0, 886, 887, 3, 417, 208, 0, 887, 888, 3, 403, 201, 0, 888, 889, 3, 441, 220, 0, 889, 890, 3, 439, 219, 0, 890, 891, 3, 409, 204, 0, 891, 892, 3, 407, 203, 0, 892, 100, 1, 0, 0, 0, 893, 894, 3, 407, 203, 0, 894, 895, 3, 435, 217, 0, 895, 896, 3, 429, 214, 0, 896, 897, 3, 431, 215, 0, 897, 102, 1, 0, 0, 0, 898, 899, 3, 409, 204, 0, 899, 900, 3, 423, 211, 0, 900, 901, 3, 437, 218, 0, 901, 902, 3, 409, 204, 0, 902, 104, 1, 0, 0, 0, 903, 904, 3, 409, 204, 0, 904, 905, 3, 427, 213, 0, 905, 906, 3, 407, 203, 0, 906, 106, 1, 0, 0, 0, 907, 908, 3, 409, 204, 0, 908, 909, 3, 427, 213, 0, 909, 910, 3, 413, 206, 0, 910, 911, 3, 417, 208, 0, 911, 912, 3, 427, 213, 0, 912, 913, 3, 409, 204, 0, 913, 108, 1, 0, 0, 0, 914, 915, 3, 409, 204, 0, 915, 916, 3, 443, 221, 0, 916, 917, 3, 409, 204, 0, 917, 918, 3, 427, 213, 0, 918, 919, 3, 439, 219, 0, 919, 920, 3, 437, 218, 0, 920, 110, 1, 0, 0, 0, 921, 922, 3, 409, 204, 0, 922, 923, 3, 447, 223, 0, 923, 924, 3, 417, 208, 0, 924, 925, 3, 437, 218, 0, 925, 926, 3, 439, 219, 0, 926, 927, 3, 437, 218, 0, 927, 112, 1, 0, 0, 0, 928, 929, 3, 409, 204, 0, 929, 930, 3, 447, 223, 0, 930, 931, 3, 431, 215, 0, 931, 932, 3, 423, 211, 0, 932, 933, 3, 401, 200, 0, 933, 934, 3, 417, 208, 0, 934, 935, 3, 427, 213, 0, 935, 114, 1, 0, 0, 0, 936, 937, 3, 409, 204, 0, 937, 938, 3, 447, 223, 0, 938, 939, 3, 431, 215, 0, 939, 940, 3, 435, 217, 0, 940, 941, 3, 409, 204, 0, 941, 942, 3, 437, 218, 0, 942, 943, 3, 437, 218, 0, 943, 944, 3, 417, 208, 0, 944, 945, 3, 429, 214, 0, 945, 946, 3, 427, 213, 0, 946, 116, 1, 0, 0, 0, 947, 948, 3, 409, 204, 0, 948, 949, 3, 447, 223, 0, 949, 950, 3, 439, 219, 0, 950, 951, 3, 435, 217, 0, 951, 952, 3, 401, 200, 0, 952, 953, 3, 405, 202, 0, 953, 954, 3, 439, 219, 0, 954, 118, 1, 0, 0, 0, 955, 956, 3, 411, 205, 0, 956, 957, 3, 409, 204, 0, 957, 958, 3, 439, 219, 0, 958, 959, 3, 405, 202, 0, 959, 960, 3, 415, 207, 0, 960, 961, 3, 409, 204, 0, 961, 962, 3, 437, 218, 0, 962, 120, 1, 0, 0, 0, 963, 964, 3, 411, 205, 0, 964, 965, 3, 417, 208, 0, 965, 966, 3, 427, 213, 0, 966, 967, 3, 401, 200, 0, 967, 968, 3, 423, 211, 0, 968, 122, 1, 0, 0, 0, 969, 970, 3, 411, 205, 0, 970, 971, 3, 417, 208, 0, 971, 972, 3, 435, 217, 0, 972, 973, 3, 437, 218, 0, 973, 974, 3, 439, 219, 0, 974, 124, 1, 0, 0, 0, 975, 976, 3, 411, 205, 0, 976, 977, 3, 423, 211, 0, 977, 978, 3, 441, 220, 0, 978, 979, 3, 437, 218, 0, 979, 980, 3, 415, 207, 0, 980, 126, 1, 0, 0, 0, 981, 982, 3, 411, 205, 0, 982, 983, 3, 429, 214, 0, 983, 984, 3, 423, 211, 0, 984, 985, 3, 423, 211, 0, 985, 986, 3, 429, 214, 0, 986, 987, 3, 445, 222, 0, 987, 988, 3, 417, 208, 0, 988, 989, 3, 427, 213, 0, 989, 990, 3, 413, 206, 0, 990, 128, 1, 0, 0, 0, 991, 992, 3, 411, 205, 0, 992, 993, 3, 429, 214, 0, 993, 994, 3, 435, 217, 0, 994, 130, 1, 0, 0, 0, 995, 996, 3, 411, 205, 0, 996, 997, 3, 429, 214, 0, 997, 998, 3, 435, 217, 0, 998, 999, 3, 425, 212, 0, 999, 1000, 3, 401, 200, 0, 1000, 1001, 3, 439, 219, 0, 1001, 132, 1, 0, 0, 0, 1002, 1003, 3, 411, 205, 0, 1003, 1004, 3, 435, 217, 0, 1004, 1005, 3, 409, 204, 0, 1005, 1006, 3, 409, 204, 0, 1006, 1007, 3, 451, 225, 0, 1007, 1008, 3, 409, 204, 0, 1008, 134, 1, 0, 0, 0, 1009, 1010, 3, 411, 205, 0, 1010, 1011, 3, 435, 217, 0, 1011, 1012, 3, 429, 214, 0, 1012, 1013, 3, 425, 212, 0, 1013, 136, 1, 0, 0, 0, 1014, 1015, 3, 411, 205, 0, 1015, 1016, 3, 441, 220, 0, 1016, 1017, 3, 423, 211, 0, 1017, 1018, 3, 423, 211, 0, 1018, 138, 1, 0, 0, 0, 1019, 1020, 3, 411, 205, 0, 1020, 1021, 3, 441, 220, 0, 1021, 1022, 3, 427, 213, 0, 1022, 1023, 3, 405, 202, 0, 1023, 1024, 3, 439, 219, 0, 1024, 1025, 3, 417, 208, 0, 1025, 1026, 3, 429, 214, 0, 1026, 1027, 3, 427, 213, 0, 1027, 140, 1, 0, 0, 0, 1028, 1029, 3, 413, 206, 0, 1029, 1030, 3, 423, 211, 0, 1030, 1031, 3, 429, 214, 0, 1031, 1032, 3, 403, 201, 0, 1032, 1033, 3, 401, 200, 0, 1033, 1034, 3, 423, 211, 0, 1034, 142, 1, 0, 0, 0, 1035, 1036, 3, 413, 206, 0, 1036, 1037, 3, 435, 217, 0, 1037, 1038, 3, 401, 200, 0, 1038, 1039, 3, 427, 213, 0, 1039, 1040, 3, 441, 220, 0, 1040, 1041, 3, 423, 211, 0, 1041, 1042, 3, 401, 200, 0, 1042, 1043, 3, 435, 217, 0, 1043, 1044, 3, 417, 208, 0, 1044, 1045, 3, 439, 219, 0, 1045, 1046, 3, 449, 224, 0, 1046, 144, 1, 0, 0, 0, 1047, 1048, 3, 413, 206, 0, 1048, 1049, 3, 435, 217, 0, 1049, 1050, 3, 429, 214, 0, 1050, 1051, 3, 441, 220, 0, 1051, 1052, 3, 431, 215, 0, 1052, 146, 1, 0, 0, 0, 1053, 1054, 3, 415, 207, 0, 1054, 1055, 3, 401, 200, 0, 1055, 1056, 3, 443, 221, 0, 1056, 1057, 3, 417, 208, 0, 1057, 1058, 3, 427, 213, 0, 1058, 1059, 3, 413, 206, 0, 1059, 148, 1, 0, 0, 0, 1060, 1061, 3, 415, 207, 0, 1061, 1062, 3, 417, 208, 0, 1062, 1063, 3, 409, 204, 0, 1063, 1064, 3, 435, 217, 0, 1064, 1065, 3, 401, 200, 0, 1065, 1066, 3, 435, 217, 0, 1066, 1067, 3, 405, 202, 0, 1067, 1068, 3, 415, 207, 0, 1068, 1069, 3, 417, 208, 0, 1069, 1070, 3, 405, 202, 0, 1070, 1071, 3, 401, 200, 0, 1071, 1072, 3, 423, 211, 0, 1072, 150, 1, 0, 0, 0, 1073, 1074, 3, 415, 207, 0, 1074, 1075, 3, 429, 214, 0, 1075, 1076, 3, 441, 220, 0, 1076, 1077, 3, 435, 217, 0, 1077, 152, 1, 0, 0, 0, 1078, 1079, 3, 417, 208, 0, 1079, 1080, 3, 407, 203, 0, 1080, 154, 1, 0, 0, 0, 1081, 1082, 3, 417, 208, 0, 1082, 1083, 3, 411, 205, 0, 1083, 156, 1, 0, 0, 0, 1084, 1085, 3, 417, 208, 0, 1085, 1086, 3, 423, 211, 0, 1086, 1087, 3, 417, 208, 0, 1087, 1088, 3, 421, 210, 0, 1088, 1089, 3, 409, 204, 0, 1089, 158, 1, 0, 0, 0, 1090, 1091, 3, 417, 208, 0, 1091, 1092, 3, 427, 213, 0, 1092, 160, 1, 0, 0, 0, 1093, 1094, 3, 417, 208, 0, 1094, 1095, 3, 427, 213, 0, 1095, 1096, 3, 407, 203, 0, 1096, 1097, 3, 409, 204, 0, 1097, 1098, 3, 447, 223, 0, 1098, 162, 1, 0, 0, 0, 1099, 1100, 3, 417, 208, 0, 1100, 1101, 3, 427, 213, 0, 1101, 1102, 3, 411, 205, 0, 1102, 1113, 1, 0, 0, 0, 1103, 1104, 3, 417, 208, 0, 1104, 1105, 3, 427, 213, 0, 1105, 1106, 3, 411, 205, 0, 1106, 1107, 3, 417, 208, 0, 1107, 1108, 3, 427, 213, 0, 1108, 1109, 3, 417, 208, 0, 1109, 1110, 3, 439, 219, 0, 1110, 1111, 3, 449, 224, 0, 1111, 1113, 1, 0, 0, 0, 1112, 1099, 1, 0, 0, 0, 1112, 1103, 1, 0, 0, 0, 1113, 164, 1, 0, 0, 0, 1114, 1115, 3, 417, 208, 0, 1115, 1116, 3, 427, 213, 0, 1116, 1117, 3, 419, 209, 0, 1117, 1118, 3, 409, 204, 0, 1118, 1119, 3, 405, 202, 0, 1119, 1120, 3, 439, 219, 0, 1120, 1121, 3, 417, 208, 0, 1121, 1122, 3, 443, 221, 0, 1122, 1123, 3, 409, 204, 0, 1123, 166, 1, 0, 0, 0, 1124, 1125, 3, 417, 208, 0, 1125, 1126, 3, 427, 213, 0, 1126, 1127, 3, 427, 213, 0, 1127, 1128, 3, 409, 204, 0, 1128, 1129, 3, 435, 217, 0, 1129, 168, 1, 0, 0, 0, 1130, 1131, 3, 417, 208, 0, 1131, 1132, 3, 427, 213, 0, 1132, 1133, 3, 437, 218, 0, 1133, 1134, 3, 409, 204, 0, 1134, 1135, 3, 435, 217, 0, 1135, 1136, 3, 439, 219, 0, 1136, 170, 1, 0, 0, 0, 1137, 1138, 3, 417, 208, 0, 1138, 1139, 3, 427, 213, 0, 1139, 1140, 3, 439, 219, 0, 1140, 1141, 3, 409, 204, 0, 1141, 1142, 3, 435, 217, 0, 1142, 1143, 3, 443, 221, 0, 1143, 1144, 3, 401, 200, 0, 1144, 1145, 3, 423, 211, 0, 1145, 172, 1, 0, 0, 0, 1146, 1147, 3, 417, 208, 0, 1147, 1148, 3, 427, 213, 0, 1148, 1149, 3, 439, 219, 0, 1149, 1150, 3, 429, 214, 0, 1150, 174, 1, 0, 0, 0, 1151, 1152, 3, 417, 208, 0, 1152, 1153, 3, 437, 218, 0, 1153, 176, 1, 0, 0, 0, 1154, 1155, 3, 417, 208, 0, 1155, 1156, 3, 437, 218, 0, 1156, 1157, 3, 537, 268, 0, 1157, 1158, 3, 429, 214, 0, 1158, 1159, 3, 403, 201, 0, 1159, 1160, 3, 419, 209, 0, 1160, 1161, 3, 409, 204, 0, 1161, 1162, 3, 405, 202, 0, 1162, 1163, 3, 439, 219, 0, 1163, 1164, 3, 537, 268, 0, 1164, 1165, 3, 417, 208, 0, 1165, 1166, 3, 407, 203, 0, 1166, 178, 1, 0, 0, 0, 1167, 1168, 3, 419, 209, 0, 1168, 1169, 3, 429, 214, 0, 1169, 1170, 3, 417, 208, 0, 1170, 1171, 3, 427, 213, 0, 1171, 180, 1, 0, 0, 0, 1172, 1173, 3, 421, 210, 0, 1173, 1174, 3, 409, 204, 0, 1174, 1175, 3, 449, 224, 0, 1175, 182, 1, 0, 0, 0, 1176, 1177, 3, 421, 210, 0, 1177, 1178, 3, 417, 208, 0, 1178, 1179, 3, 423, 211, 0, 1179, 1180, 3, 423, 211, 0, 1180, 184, 1, 0, 0, 0, 1181, 1182, 3, 423, 211, 0, 1182, 1183, 3, 401, 200, 0, 1183, 1184, 3, 437, 218, 0, 1184, 1185, 3, 439, 219, 0, 1185, 186, 1, 0, 0, 0, 1186, 1187, 3, 423, 211, 0, 1187, 1188, 3, 401, 200, 0, 1188, 1189, 3, 449, 224, 0, 1189, 1190, 3, 429, 214, 0, 1190, 1191, 3, 441, 220, 0, 1191, 1192, 3, 439, 219, 0, 1192, 188, 1, 0, 0, 0, 1193, 1194, 3, 423, 211, 0, 1194, 1195, 3, 409, 204, 0, 1195, 1196, 3, 401, 200, 0, 1196, 1197, 3, 407, 203, 0, 1197, 1198, 3, 417, 208, 0, 1198, 1199, 3, 427, 213, 0, 1199, 1200, 3, 413, 206, 0, 1200, 190, 1, 0, 0, 0, 1201, 1202, 3, 423, 211, 0, 1202, 1203, 3, 409, 204, 0, 1203, 1204, 3, 411, 205, 0, 1204, 1205, 3, 439, 219, 0, 1205, 192, 1, 0, 0, 0, 1206, 1207, 3, 423, 211, 0, 1207, 1208, 3, 417, 208, 0, 1208, 1209, 3, 411, 205, 0, 1209, 1210, 3, 409, 204, 0, 1210, 1211, 3, 439, 219, 0, 1211, 1212, 3, 417, 208, 0, 1212, 1213, 3, 425, 212, 0, 1213, 1214, 3, 409, 204, 0, 1214, 194, 1, 0, 0, 0, 1215, 1216, 3, 423, 211, 0, 1216, 1217, 3, 417, 208, 0, 1217, 1218, 3, 421, 210, 0, 1218, 1219, 3, 409, 204, 0, 1219, 196, 1, 0, 0, 0, 1220, 1221, 3, 423, 211, 0, 1221, 1222, 3, 417, 208, 0, 1222, 1223, 3, 425, 212, 0, 1223, 1224, 3, 417, 208, 0, 1224, 1225, 3, 439, 219, 0, 1225, 198, 1, 0, 0, 0, 1226, 1227, 3, 423, 211, 0, 1227, 1228, 3, 417, 208, 0, 1228, 1229, 3, 443, 221, 0, 1229, 1230, 3, 409, 204, 0, 1230, 200, 1, 0, 0, 0, 1231, 1232, 3, 423, 211, 0, 1232, 1233, 3, 429, 214, 0, 1233, 1234, 3, 405, 202, 0, 1234, 1235, 3, 401, 200, 0, 1235, 1236, 3, 423, 211, 0, 1236, 202, 1, 0, 0, 0, 1237, 1238, 3, 423, 211, 0, 1238, 1239, 3, 429, 214, 0, 1239, 1240, 3, 413, 206, 0, 1240, 1241, 3, 437, 218, 0, 1241, 204, 1, 0, 0, 0, 1242, 1243, 3, 425, 212, 0, 1243, 1244, 3, 401, 200, 0, 1244, 1245, 3, 439, 219, 0, 1245, 1246, 3, 409, 204, 0, 1246, 1247, 3, 435, 217, 0, 1247, 1248, 3, 417, 208, 0, 1248, 1249, 3, 401, 200, 0, 1249, 1250, 3, 423, 211, 0, 1250, 1251, 3, 417, 208, 0, 1251, 1252, 3, 451, 225, 0, 1252, 1253, 3, 409, 204, 0, 1253, 206, 1, 0, 0, 0, 1254, 1255, 3, 425, 212, 0, 1255, 1256, 3, 401, 200, 0, 1256, 1257, 3, 439, 219, 0, 1257, 1258, 3, 409, 204, 0, 1258, 1259, 3, 435, 217, 0, 1259, 1260, 3, 417, 208, 0, 1260, 1261, 3, 401, 200, 0, 1261, 1262, 3, 423, 211, 0, 1262, 1263, 3, 417, 208, 0, 1263, 1264, 3, 451, 225, 0, 1264, 1265, 3, 409, 204, 0, 1265, 1266, 3, 407, 203, 0, 1266, 208, 1, 0, 0, 0, 1267, 1268, 3, 425, 212, 0, 1268, 1269, 3, 401, 200, 0, 1269, 1270, 3, 447, 223, 0, 1270, 210, 1, 0, 0, 0, 1271, 1272, 3, 425, 212, 0, 1272, 1273, 3, 409, 204, 0, 1273, 1274, 3, 435, 217, 0, 1274, 1275, 3, 413, 206, 0, 1275, 1276, 3, 409, 204, 0, 1276, 1277, 3, 437, 218, 0, 1277, 212, 1, 0, 0, 0, 1278, 1279, 3, 425, 212, 0, 1279, 1280, 3, 417, 208, 0, 1280, 1281, 3, 427, 213, 0, 1281, 214, 1, 0, 0, 0, 1282, 1283, 3, 425, 212, 0, 1283, 1284, 3, 417, 208, 0, 1284, 1285, 3, 427, 213, 0, 1285, 1286, 3, 441, 220, 0, 1286, 1287, 3, 439, 219, 0, 1287, 1288, 3, 409, 204, 0, 1288, 216, 1, 0, 0, 0, 1289, 1290, 3, 425, 212, 0, 1290, 1291, 3, 429, 214, 0, 1291, 1292, 3, 407, 203, 0, 1292, 1293, 3, 417, 208, 0, 1293, 1294, 3, 411, 205, 0, 1294, 1295, 3, 449, 224, 0, 1295, 218, 1, 0, 0, 0, 1296, 1297, 3, 425, 212, 0, 1297, 1298, 3, 429, 214, 0, 1298, 1299, 3, 427, 213, 0, 1299, 1300, 3, 439, 219, 0, 1300, 1301, 3, 415, 207, 0, 1301, 220, 1, 0, 0, 0, 1302, 1303, 3, 425, 212, 0, 1303, 1304, 3, 429, 214, 0, 1304, 1305, 3, 443, 221, 0, 1305, 1306, 3, 409, 204, 0, 1306, 222, 1, 0, 0, 0, 1307, 1308, 3, 425, 212, 0, 1308, 1309, 3, 441, 220, 0, 1309, 1310, 3, 439, 219, 0, 1310, 1311, 3, 401, 200, 0, 1311, 1312, 3, 439, 219, 0, 1312, 1313, 3, 417, 208, 0, 1313, 1314, 3, 429, 214, 0, 1314, 1315, 3, 427, 213, 0, 1315, 224, 1, 0, 0, 0, 1316, 1317, 3, 427, 213, 0, 1317, 1318, 3, 401, 200, 0, 1318, 1319, 3, 427, 213, 0, 1319, 226, 1, 0, 0, 0, 1320, 1321, 3, 427, 213, 0, 1321, 1322, 3, 429, 214, 0, 1322, 228, 1, 0, 0, 0, 1323, 1324, 3, 427, 213, 0, 1324, 1325, 3, 429, 214, 0, 1325, 1326, 3, 439, 219, 0, 1326, 230, 1, 0, 0, 0, 1327, 1328, 3, 427, 213, 0, 1328, 1329, 3, 441, 220, 0, 1329, 1330, 3, 423, 211, 0, 1330, 1331, 3, 423, 211, 0, 1331, 232, 1, 0, 0, 0, 1332, 1333, 3, 427, 213, 0, 1333, 1334, 3, 441, 220, 0, 1334, 1335, 3, 423, 211, 0, 1335, 1336, 3, 423, 211, 0, 1336, 1337, 3, 437, 218, 0, 1337, 234, 1, 0, 0, 0, 1338, 1339, 3, 429, 214, 0, 1339, 1340, 3, 411, 205, 0, 1340, 1341, 3, 411, 205, 0, 1341, 1342, 3, 437, 218, 0, 1342, 1343, 3, 409, 204, 0, 1343, 1344, 3, 439, 219, 0, 1344, 236, 1, 0, 0, 0, 1345, 1346, 3, 429, 214, 0, 1346, 1347, 3, 427, 213, 0, 1347, 238, 1, 0, 0, 0, 1348, 1349, 3, 429, 214, 0, 1349, 1350, 3, 431, 215, 0, 1350, 1351, 3, 439, 219, 0, 1351, 1352, 3, 417, 208, 0, 1352, 1353, 3, 425, 212, 0, 1353, 1354, 3, 417, 208, 0, 1354, 1355, 3, 451, 225, 0, 1355, 1356, 3, 409, 204, 0, 1356, 240, 1, 0, 0, 0, 1357, 1358, 3, 429, 214, 0, 1358, 1359, 3, 435, 217, 0, 1359, 242, 1, 0, 0, 0, 1360, 1361, 3, 429, 214, 0, 1361, 1362, 3, 435, 217, 0, 1362, 1363, 3, 407, 203, 0, 1363, 1364, 3, 409, 204, 0, 1364, 1365, 3, 435, 217, 0, 1365, 244, 1, 0, 0, 0, 1366, 1367, 3, 429, 214, 0, 1367, 1368, 3, 441, 220, 0, 1368, 1369, 3, 439, 219, 0, 1369, 1370, 3, 409, 204, 0, 1370, 1371, 3, 435, 217, 0, 1371, 246, 1, 0, 0, 0, 1372, 1373, 3, 429, 214, 0, 1373, 1374, 3, 441, 220, 0, 1374, 1375, 3, 439, 219, 0, 1375, 1376, 3, 411, 205, 0, 1376, 1377, 3, 417, 208, 0, 1377, 1378, 3, 423, 211, 0, 1378, 1379, 3, 409, 204, 0, 1379, 248, 1, 0, 0, 0, 1380, 1381, 3, 429, 214, 0, 1381, 1382, 3, 443, 221, 0, 1382, 1383, 3, 409, 204, 0, 1383, 1384, 3, 435, 217, 0, 1384, 250, 1, 0, 0, 0, 1385, 1386, 3, 431, 215, 0, 1386, 1387, 3, 401, 200, 0, 1387, 1388, 3, 435, 217, 0, 1388, 1389, 3, 439, 219, 0, 1389, 1390, 3, 417, 208, 0, 1390, 1391, 3, 439, 219, 0, 1391, 1392, 3, 417, 208, 0, 1392, 1393, 3, 429, 214, 0, 1393, 1394, 3, 427, 213, 0, 1394, 252, 1, 0, 0, 0, 1395, 1396, 3, 431, 215, 0, 1396, 1397, 3, 429, 214, 0, 1397, 1398, 3, 431, 215, 0, 1398, 1399, 3, 441, 220, 0, 1399, 1400, 3, 423, 211, 0, 1400, 1401, 3, 401, 200, 0, 1401, 1402, 3, 439, 219, 0, 1402, 1403, 3, 409, 204, 0, 1403, 254, 1, 0, 0, 0, 1404, 1405, 3, 431, 215, 0, 1405, 1406, 3, 435, 217, 0, 1406, 1407, 3, 409, 204, 0, 1407, 1408, 3, 405, 202, 0, 1408, 1409, 3, 409, 204, 0, 1409, 1410, 3, 407, 203, 0, 1410, 1411, 3, 417, 208, 0, 1411, 1412, 3, 427, 213, 0, 1412, 1413, 3, 413, 206, 0, 1413, 256, 1, 0, 0, 0, 1414, 1415, 3, 431, 215, 0, 1415, 1416, 3, 435, 217, 0, 1416, 1417, 3, 409, 204, 0, 1417, 1418, 3, 445, 222, 0, 1418, 1419, 3, 415, 207, 0, 1419, 1420, 3, 409, 204, 0, 1420, 1421, 3, 435, 217, 0, 1421, 1422, 3, 409, 204, 0, 1422, 258, 1, 0, 0, 0, 1423, 1424, 3, 431, 215, 0, 1424, 1425, 3, 435, 217, 0, 1425, 1426, 3, 417, 208, 0, 1426, 1427, 3, 425, 212, 0, 1427, 1428, 3, 401, 200, 0, 1428, 1429, 3, 435, 217, 0, 1429, 1430, 3, 449, 224, 0, 1430, 260, 1, 0, 0, 0, 1431, 1432, 3, 431, 215, 0, 1432, 1433, 3, 435, 217, 0, 1433, 1434, 3, 429, 214, 0, 1434, 1435, 3, 419, 209, 0, 1435, 1436, 3, 409, 204, 0, 1436, 1437, 3, 405, 202, 0, 1437, 1438, 3, 439, 219, 0, 1438, 1439, 3, 417, 208, 0, 1439, 1440, 3, 429, 214, 0, 1440, 1441, 3, 427, 213, 0, 1441, 262, 1, 0, 0, 0, 1442, 1443, 3, 433, 216, 0, 1443, 1444, 3, 441, 220, 0, 1444, 1445, 3, 401, 200, 0, 1445, 1446, 3, 435, 217, 0, 1446, 1447, 3, 439, 219, 0, 1447, 1448, 3, 409, 204, 0, 1448, 1449, 3, 435, 217, 0, 1449, 264, 1, 0, 0, 0, 1450, 1451, 3, 435, 217, 0, 1451, 1452, 3, 401, 200, 0, 1452, 1453, 3, 427, 213, 0, 1453, 1454, 3, 413, 206, 0, 1454, 1455, 3, 409, 204, 0, 1455, 266, 1, 0, 0, 0, 1456, 1457, 3, 435, 217, 0, 1457, 1458, 3, 409, 204, 0, 1458, 1459, 3, 423, 211, 0, 1459, 1460, 3, 429, 214, 0, 1460, 1461, 3, 401, 200, 0, 1461, 1462, 3, 407, 203, 0, 1462, 268, 1, 0, 0, 0, 1463, 1464, 3, 435, 217, 0, 1464, 1465, 3, 409, 204, 0, 1465, 1466, 3, 425, 212, 0, 1466, 1467, 3, 429, 214, 0, 1467, 1468, 3, 443, 221, 0, 1468, 1469, 3, 409, 204, 0, 1469, 270, 1, 0, 0, 0, 1470, 1471, 3, 435, 217, 0, 1471, 1472, 3, 409, 204, 0, 1472, 1473, 3, 427, 213, 0, 1473, 1474, 3, 401, 200, 0, 1474, 1475, 3, 425, 212, 0, 1475, 1476, 3, 409, 204, 0, 1476, 272, 1, 0, 0, 0, 1477, 1478, 3, 435, 217, 0, 1478, 1479, 3, 409, 204, 0, 1479, 1480, 3, 431, 215, 0, 1480, 1481, 3, 423, 211, 0, 1481, 1482, 3, 401, 200, 0, 1482, 1483, 3, 405, 202, 0, 1483, 1484, 3, 409, 204, 0, 1484, 274, 1, 0, 0, 0, 1485, 1486, 3, 435, 217, 0, 1486, 1487, 3, 409, 204, 0, 1487, 1488, 3, 431, 215, 0, 1488, 1489, 3, 423, 211, 0, 1489, 1490, 3, 417, 208, 0, 1490, 1491, 3, 405, 202, 0, 1491, 1492, 3, 401, 200, 0, 1492, 276, 1, 0, 0, 0, 1493, 1494, 3, 435, 217, 0, 1494, 1495, 3, 409, 204, 0, 1495, 1496, 3, 431, 215, 0, 1496, 1497, 3, 423, 211, 0, 1497, 1498, 3, 417, 208, 0, 1498, 1499, 3, 405, 202, 0, 1499, 1500, 3, 401, 200, 0, 1500, 1501, 3, 439, 219, 0, 1501, 1502, 3, 409, 204, 0, 1502, 1503, 3, 407, 203, 0, 1503, 278, 1, 0, 0, 0, 1504, 1505, 3, 435, 217, 0, 1505, 1506, 3, 417, 208, 0, 1506, 1507, 3, 413, 206, 0, 1507, 1508, 3, 415, 207, 0, 1508, 1509, 3, 439, 219, 0, 1509, 280, 1, 0, 0, 0, 1510, 1511, 3, 435, 217, 0, 1511, 1512, 3, 429, 214, 0, 1512, 1513, 3, 423, 211, 0, 1513, 1514, 3, 423, 211, 0, 1514, 1515, 3, 441, 220, 0, 1515, 1516, 3, 431, 215, 0, 1516, 282, 1, 0, 0, 0, 1517, 1518, 3, 435, 217, 0, 1518, 1519, 3, 429, 214, 0, 1519, 1520, 3, 445, 222, 0, 1520, 284, 1, 0, 0, 0, 1521, 1522, 3, 435, 217, 0, 1522, 1523, 3, 429, 214, 0, 1523, 1524, 3, 445, 222, 0, 1524, 1525, 3, 437, 218, 0, 1525, 286, 1, 0, 0, 0, 1526, 1527, 3, 437, 218, 0, 1527, 1528, 3, 401, 200, 0, 1528, 1529, 3, 425, 212, 0, 1529, 1530, 3, 431, 215, 0, 1530, 1531, 3, 423, 211, 0, 1531, 1532, 3, 409, 204, 0, 1532, 288, 1, 0, 0, 0, 1533, 1534, 3, 437, 218, 0, 1534, 1535, 3, 409, 204, 0, 1535, 1536, 3, 405, 202, 0, 1536, 1537, 3, 429, 214, 0, 1537, 1538, 3, 427, 213, 0, 1538, 1539, 3, 407, 203, 0, 1539, 290, 1, 0, 0, 0, 1540, 1541, 3, 437, 218, 0, 1541, 1542, 3, 409, 204, 0, 1542, 1543, 3, 423, 211, 0, 1543, 1544, 3, 409, 204, 0, 1544, 1545, 3, 405, 202, 0, 1545, 1546, 3, 439, 219, 0, 1546, 292, 1, 0, 0, 0, 1547, 1548, 3, 437, 218, 0, 1548, 1549, 3, 409, 204, 0, 1549, 1550, 3, 425, 212, 0, 1550, 1551, 3, 417, 208, 0, 1551, 294, 1, 0, 0, 0, 1552, 1553, 3, 437, 218, 0, 1553, 1554, 3, 409, 204, 0, 1554, 1555, 3, 427, 213, 0, 1555, 1556, 3, 407, 203, 0, 1556, 1557, 3, 437, 218, 0, 1557, 296, 1, 0, 0, 0, 1558, 1559, 3, 437, 218, 0, 1559, 1560, 3, 409, 204, 0, 1560, 1561, 3, 439, 219, 0, 1561, 298, 1, 0, 0, 0, 1562, 1563, 3, 437, 218, 0, 1563, 1564, 3, 409, 204, 0, 1564, 1565, 3, 439, 219, 0, 1565, 1566, 3, 439, 219, 0, 1566, 1567, 3, 417, 208, 0, 1567, 1568, 3, 427, 213, 0, 1568, 1569, 3, 413, 206, 0, 1569, 1570, 3, 437, 218, 0, 1570, 300, 1, 0, 0, 0, 1571, 1572, 3, 437, 218, 0, 1572, 1573, 3, 415, 207, 0, 1573, 1574, 3, 429, 214, 0, 1574, 1575, 3, 445, 222, 0, 1575, 302, 1, 0, 0, 0, 1576, 1577, 3, 437, 218, 0, 1577, 1578, 3, 429, 214, 0, 1578, 1579, 3, 441, 220, 0, 1579, 1580, 3, 435, 217, 0, 1580, 1581, 3, 405, 202, 0, 1581, 1582, 3, 409, 204, 0, 1582, 304, 1, 0, 0, 0, 1583, 1584, 3, 437, 218, 0, 1584, 1585, 3, 439, 219, 0, 1585, 1586, 3, 401, 200, 0, 1586, 1587, 3, 435, 217, 0, 1587, 1588, 3, 439, 219, 0, 1588, 306, 1, 0, 0, 0, 1589, 1590, 3, 437, 218, 0, 1590, 1591, 3, 439, 219, 0, 1591, 1592, 3, 429, 214, 0, 1592, 1593, 3, 431, 215, 0, 1593, 308, 1, 0, 0, 0, 1594, 1595, 3, 437, 218, 0, 1595, 1596, 3, 441, 220, 0, 1596, 1597, 3, 403, 201, 0, 1597, 1598, 3, 437, 218, 0, 1598, 1599, 3, 439, 219, 0, 1599, 1600, 3, 435, 217, 0, 1600, 1601, 3, 417, 208, 0, 1601, 1602, 3, 427, 213, 0, 1602, 1603, 3, 413, 206, 0, 1603, 310, 1, 0, 0, 0, 1604, 1605, 3, 437, 218, 0, 1605, 1606, 3, 449, 224, 0, 1606, 1607, 3, 427, 213, 0, 1607, 1608, 3, 405, 202, 0, 1608, 312, 1, 0, 0, 0, 1609, 1610, 3, 437, 218, 0, 1610, 1611, 3, 449, 224, 0, 1611, 1612, 3, 427, 213, 0, 1612, 1613, 3, 439, 219, 0, 1613, 1614, 3, 401, 200, 0, 1614, 1615, 3, 447, 223, 0, 1615, 314, 1, 0, 0, 0, 1616, 1617, 3, 437, 218, 0, 1617, 1618, 3, 449, 224, 0, 1618, 1619, 3, 437, 218, 0, 1619, 1620, 3, 439, 219, 0, 1620, 1621, 3, 409, 204, 0, 1621, 1622, 3, 425, 212, 0, 1622, 316, 1, 0, 0, 0, 1623, 1624, 3, 439, 219, 0, 1624, 1625, 3, 401, 200, 0, 1625, 1626, 3, 403, 201, 0, 1626, 1627, 3, 423, 211, 0, 1627, 1628, 3, 409, 204, 0, 1628, 318, 1, 0, 0, 0, 1629, 1630, 3, 439, 219, 0, 1630, 1631, 3, 401, 200, 0, 1631, 1632, 3, 403, 201, 0, 1632, 1633, 3, 423, 211, 0, 1633, 1634, 3, 409, 204, 0, 1634, 1635, 3, 437, 218, 0, 1635, 320, 1, 0, 0, 0, 1636, 1637, 3, 439, 219, 0, 1637, 1638, 3, 409, 204, 0, 1638, 1639, 3, 425, 212, 0, 1639, 1640, 3, 431, 215, 0, 1640, 1641, 3, 429, 214, 0, 1641, 1642, 3, 435, 217, 0, 1642, 1643, 3, 401, 200, 0, 1643, 1644, 3, 435, 217, 0, 1644, 1645, 3, 449, 224, 0, 1645, 322, 1, 0, 0, 0, 1646, 1647, 3, 439, 219, 0, 1647, 1648, 3, 409, 204, 0, 1648, 1649, 3, 437, 218, 0, 1649, 1650, 3, 439, 219, 0, 1650, 324, 1, 0, 0, 0, 1651, 1652, 3, 439, 219, 0, 1652, 1653, 3, 415, 207, 0, 1653, 1654, 3, 409, 204, 0, 1654, 1655, 3, 427, 213, 0, 1655, 326, 1, 0, 0, 0, 1656, 1657, 3, 439, 219, 0, 1657, 1658, 3, 417, 208, 0, 1658, 1659, 3, 409, 204, 0, 1659, 1660, 3, 437, 218, 0, 1660, 328, 1, 0, 0, 0, 1661, 1662, 3, 439, 219, 0, 1662, 1663, 3, 417, 208, 0, 1663, 1664, 3, 425, 212, 0, 1664, 1665, 3, 409, 204, 0, 1665, 1666, 3, 429, 214, 0, 1666, 1667, 3, 441, 220, 0, 1667, 1668, 3, 439, 219, 0, 1668, 330, 1, 0, 0, 0, 1669, 1670, 3, 439, 219, 0, 1670, 1671, 3, 417, 208, 0, 1671, 1672, 3, 425, 212, 0, 1672, 1673, 3, 409, 204, 0, 1673, 1674, 3, 437, 218, 0, 1674, 1675, 3, 439, 219, 0, 1675, 1676, 3, 401, 200, 0, 1676, 1677, 3, 425, 212, 0, 1677, 1678, 3, 431, 215, 0, 1678, 332, 1, 0, 0, 0, 1679, 1680, 3, 439, 219, 0, 1680, 1681, 3, 429, 214, 0, 1681, 334, 1, 0, 0, 0, 1682, 1683, 3, 439, 219, 0, 1683, 1684, 3, 429, 214, 0, 1684, 1685, 3, 431, 215, 0, 1685, 336, 1, 0, 0, 0, 1686, 1687, 3, 439, 219, 0, 1687, 1688, 3, 429, 214, 0, 1688, 1689, 3, 439, 219, 0, 1689, 1690, 3, 401, 200, 0, 1690, 1691, 3, 423, 211, 0, 1691, 1692, 3, 437, 218, 0, 1692, 338, 1, 0, 0, 0, 1693, 1694, 3, 439, 219, 0, 1694, 1695, 3, 435, 217, 0, 1695, 1696, 3, 401, 200, 0, 1696, 1697, 3, 417, 208, 0, 1697, 1698, 3, 423, 211, 0, 1698, 1699, 3, 417, 208, 0, 1699, 1700, 3, 427, 213, 0, 1700, 1701, 3, 413, 206, 0, 1701, 340, 1, 0, 0, 0, 1702, 1703, 3, 439, 219, 0, 1703, 1704, 3, 435, 217, 0, 1704, 1705, 3, 417, 208, 0, 1705, 1706, 3, 425, 212, 0, 1706, 342, 1, 0, 0, 0, 1707, 1708, 3, 439, 219, 0, 1708, 1709, 3, 435, 217, 0, 1709, 1710, 3, 441, 220, 0, 1710, 1711, 3, 427, 213, 0, 1711, 1712, 3, 405, 202, 0, 1712, 1713, 3, 401, 200, 0, 1713, 1714, 3, 439, 219, 0, 1714, 1715, 3, 409, 204, 0, 1715, 344, 1, 0, 0, 0, 1716, 1717, 3, 439, 219, 0, 1717, 1718, 3, 439, 219, 0, 1718, 1719, 3, 423, 211, 0, 1719, 346, 1, 0, 0, 0, 1720, 1721, 3, 439, 219, 0, 1721, 1722, 3, 449, 224, 0, 1722, 1723, 3, 431, 215, 0, 1723, 1724, 3, 409, 204, 0, 1724, 348, 1, 0, 0, 0, 1725, 1726, 3, 441, 220, 0, 1726, 1727, 3, 427, 213, 0, 1727, 1728, 3, 403, 201, 0, 1728, 1729, 3, 429, 214, 0, 1729, 1730, 3, 441, 220, 0, 1730, 1731, 3, 427, 213, 0, 1731, 1732, 3, 407, 203, 0, 1732, 1733, 3, 409, 204, 0, 1733, 1734, 3, 407, 203, 0, 1734, 350, 1, 0, 0, 0, 1735, 1736, 3, 441, 220, 0, 1736, 1737, 3, 427, 213, 0, 1737, 1738, 3, 417, 208, 0, 1738, 1739, 3, 429, 214, 0, 1739, 1740, 3, 427, 213, 0, 1740, 352, 1, 0, 0, 0, 1741, 1742, 3, 441, 220, 0, 1742, 1743, 3, 431, 215, 0, 1743, 1744, 3, 407, 203, 0, 1744, 1745, 3, 401, 200, 0, 1745, 1746, 3, 439, 219, 0, 1746, 1747, 3, 409, 204, 0, 1747, 354, 1, 0, 0, 0, 1748, 1749, 3, 441, 220, 0, 1749, 1750, 3, 437, 218, 0, 1750, 1751, 3, 409, 204, 0, 1751, 356, 1, 0, 0, 0, 1752, 1753, 3, 441, 220, 0, 1753, 1754, 3, 437, 218, 0, 1754, 1755, 3, 417, 208, 0, 1755, 1756, 3, 427, 213, 0, 1756, 1757, 3, 413, 206, 0, 1757, 358, 1, 0, 0, 0, 1758, 1759, 3, 441, 220, 0, 1759, 1760, 3, 441, 220, 0, 1760, 1761, 3, 417, 208, 0, 1761, 1762, 3, 407, 203, 0, 1762, 360, 1, 0, 0, 0, 1763, 1764, 3, 443, 221, 0, 1764, 1765, 3, 401, 200, 0, 1765, 1766, 3, 423, 211, 0, 1766, 1767, 3, 441, 220, 0, 1767, 1768, 3, 409, 204, 0, 1768, 1769, 3, 437, 218, 0, 1769, 362, 1, 0, 0, 0, 1770, 1771, 3, 443, 221, 0, 1771, 1772, 3, 417, 208, 0, 1772, 1773, 3, 409, 204, 0, 1773, 1774, 3, 445, 222, 0, 1774, 364, 1, 0, 0, 0, 1775, 1776, 3, 443, 221, 0, 1776, 1777, 3, 429, 214, 0, 1777, 1778, 3, 423, 211, 0, 1778, 1779, 3, 441, 220, 0, 1779, 1780, 3, 425, 212, 0, 1780, 1781, 3, 409, 204, 0, 1781, 366, 1, 0, 0, 0, 1782, 1783, 3, 445, 222, 0, 1783, 1784, 3, 401, 200, 0, 1784, 1785, 3, 439, 219, 0, 1785, 1786, 3, 405, 202, 0, 1786, 1787, 3, 415, 207, 0, 1787, 368, 1, 0, 0, 0, 1788, 1789, 3, 445, 222, 0, 1789, 1790, 3, 409, 204, 0, 1790, 1791, 3, 409, 204, 0, 1791, 1792, 3, 421, 210, 0, 1792, 370, 1, 0, 0, 0, 1793, 1794, 3, 445, 222, 0, 1794, 1795, 3, 415, 207, 0, 1795, 1796, 3, 409, 204, 0, 1796, 1797, 3, 427, 213, 0, 1797, 372, 1, 0, 0, 0, 1798, 1799, 3, 445, 222, 0, 1799, 1800, 3, 415, 207, 0, 1800, 1801, 3, 409, 204, 0, 1801, 1802, 3, 435, 217, 0, 1802, 1803, 3, 409, 204, 0, 1803, 374, 1, 0, 0, 0, 1804, 1805, 3, 445, 222, 0, 1805, 1806, 3, 417, 208, 0, 1806, 1807, 3, 427, 213, 0, 1807, 1808, 3, 407, 203, 0, 1808, 1809, 3, 429, 214, 0, 1809, 1810, 3, 445, 222, 0, 1810, 376, 1, 0, 0, 0, 1811, 1812, 3, 445, 222, 0, 1812, 1813, 3, 417, 208, 0, 1813, 1814, 3, 439, 219, 0, 1814, 1815, 3, 415, 207, 0, 1815, 378, 1, 0, 0, 0, 1816, 1817, 3, 449, 224, 0, 1817, 1818, 3, 409, 204, 0, 1818, 1819, 3, 401, 200, 0, 1819, 1820, 3, 435, 217, 0, 1820, 1827, 1, 0, 0, 0, 1821, 1822, 3, 449, 224, 0, 1822, 1823, 3, 449, 224, 0, 1823, 1824, 3, 449, 224, 0, 1824, 1825, 3, 449, 224, 0, 1825, 1827, 1, 0, 0, 0, 1826, 1816, 1, 0, 0, 0, 1826, 1821, 1, 0, 0, 0, 1827, 380, 1, 0, 0, 0, 1828, 1829, 5, 102, 0, 0, 1829, 1830, 5, 97, 0, 0, 1830, 1831, 5, 108, 0, 0, 1831, 1832, 5, 115, 0, 0, 1832, 1833, 5, 101, 0, 0, 1833, 382, 1, 0, 0, 0, 1834, 1835, 5, 116, 0, 0, 1835, 1836, 5, 114, 0, 0, 1836, 1837, 5, 117, 0, 0, 1837, 1838, 5, 101, 0, 0, 1838, 384, 1, 0, 0, 0, 1839, 1840, 3, 467, 233, 0, 1840, 1841, 3, 403, 201, 0, 1841, 1870, 1, 0, 0, 0, 1842, 1843, 3, 467, 233, 0, 1843, 1844, 3, 411, 205, 0, 1844, 1870, 1, 0, 0, 0, 1845, 1846, 3, 467, 233, 0, 1846, 1847, 3, 435, 217, 0, 1847, 1870, 1, 0, 0, 0, 1848, 1849, 3, 467, 233, 0, 1849, 1850, 3, 427, 213, 0, 1850, 1870, 1, 0, 0, 0, 1851, 1852, 3, 467, 233, 0, 1852, 1853, 3, 439, 219, 0, 1853, 1870, 1, 0, 0, 0, 1854, 1855, 3, 467, 233, 0, 1855, 1856, 5, 48, 0, 0, 1856, 1870, 1, 0, 0, 0, 1857, 1858, 3, 467, 233, 0, 1858, 1859, 3, 401, 200, 0, 1859, 1870, 1, 0, 0, 0, 1860, 1861, 3, 467, 233, 0, 1861, 1862, 3, 443, 221, 0, 1862, 1870, 1, 0, 0, 0, 1863, 1864, 3, 467, 233, 0, 1864, 1865, 3, 467, 233, 0, 1865, 1870, 1, 0, 0, 0, 1866, 1867, 3, 467, 233, 0, 1867, 1868, 3, 521, 260, 0, 1868, 1870, 1, 0, 0, 0, 1869, 1839, 1, 0, 0, 0, 1869, 1842, 1, 0, 0, 0, 1869, 1845, 1, 0, 0, 0, 1869, 1848, 1, 0, 0, 0, 1869, 1851, 1, 0, 0, 0, 1869, 1854, 1, 0, 0, 0, 1869, 1857, 1, 0, 0, 0, 1869, 1860, 1, 0, 0, 0, 1869, 1863, 1, 0, 0, 0, 1869, 1866, 1, 0, 0, 0, 1870, 386, 1, 0, 0, 0, 1871, 1875, 3, 453, 226, 0, 1872, 1875, 3, 537, 268, 0, 1873, 1875, 3, 477, 238, 0, 1874, 1871, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1873, 1, 0, 0, 0, 1875, 1882, 1, 0, 0, 0, 1876, 1881, 3, 453, 226, 0, 1877, 1881, 3, 537, 268, 0, 1878, 1881, 3, 457, 228, 0, 1879, 1881, 3, 477, 238, 0, 1880, 1876, 1, 0, 0, 0, 1880, 1877, 1, 0, 0, 0, 1880, 1878, 1, 0, 0, 0, 1880, 1879, 1, 0, 0, 0, 1881, 1884, 1, 0, 0, 0, 1882, 1880, 1, 0, 0, 0, 1882, 1883, 1, 0, 0, 0, 1883, 1912, 1, 0, 0, 0, 1884, 1882, 1, 0, 0, 0, 1885, 1893, 3, 465, 232, 0, 1886, 1892, 8, 0, 0, 0, 1887, 1892, 3, 385, 192, 0, 1888, 1889, 3, 465, 232, 0, 1889, 1890, 3, 465, 232, 0, 1890, 1892, 1, 0, 0, 0, 1891, 1886, 1, 0, 0, 0, 1891, 1887, 1, 0, 0, 0, 1891, 1888, 1, 0, 0, 0, 1892, 1895, 1, 0, 0, 0, 1893, 1891, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1896, 1, 0, 0, 0, 1895, 1893, 1, 0, 0, 0, 1896, 1897, 3, 465, 232, 0, 1897, 1912, 1, 0, 0, 0, 1898, 1906, 3, 519, 259, 0, 1899, 1905, 8, 1, 0, 0, 1900, 1905, 3, 385, 192, 0, 1901, 1902, 3, 519, 259, 0, 1902, 1903, 3, 519, 259, 0, 1903, 1905, 1, 0, 0, 0, 1904, 1899, 1, 0, 0, 0, 1904, 1900, 1, 0, 0, 0, 1904, 1901, 1, 0, 0, 0, 1905, 1908, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1906, 1907, 1, 0, 0, 0, 1907, 1909, 1, 0, 0, 0, 1908, 1906, 1, 0, 0, 0, 1909, 1910, 3, 519, 259, 0, 1910, 1912, 1, 0, 0, 0, 1911, 1874, 1, 0, 0, 0, 1911, 1885, 1, 0, 0, 0, 1911, 1898, 1, 0, 0, 0, 1912, 388, 1, 0, 0, 0, 1913, 1914, 3, 395, 197, 0, 1914, 1918, 3, 479, 239, 0, 1915, 1917, 3, 459, 229, 0, 1916, 1915, 1, 0, 0, 0, 1917, 1920, 1, 0, 0, 0, 1918, 1916, 1, 0, 0, 0, 1918, 1919, 1, 0, 0, 0, 1919, 1923, 1, 0, 0, 0, 1920, 1918, 1, 0, 0, 0, 1921, 1924, 3, 431, 215, 0, 1922, 1924, 3, 409, 204, 0, 1923, 1921, 1, 0, 0, 0, 1923, 1922, 1, 0, 0, 0, 1924, 1927, 1, 0, 0, 0, 1925, 1928, 3, 515, 257, 0, 1926, 1928, 3, 475, 237, 0, 1927, 1925, 1, 0, 0, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1930, 1, 0, 0, 0, 1929, 1931, 3, 457, 228, 0, 1930, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 1930, 1, 0, 0, 0, 1932, 1933, 1, 0, 0, 0, 1933, 1990, 1, 0, 0, 0, 1934, 1937, 3, 395, 197, 0, 1935, 1938, 3, 431, 215, 0, 1936, 1938, 3, 409, 204, 0, 1937, 1935, 1, 0, 0, 0, 1937, 1936, 1, 0, 0, 0, 1938, 1941, 1, 0, 0, 0, 1939, 1942, 3, 515, 257, 0, 1940, 1942, 3, 475, 237, 0, 1941, 1939, 1, 0, 0, 0, 1941, 1940, 1, 0, 0, 0, 1941, 1942, 1, 0, 0, 0, 1942, 1944, 1, 0, 0, 0, 1943, 1945, 3, 457, 228, 0, 1944, 1943, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1944, 1, 0, 0, 0, 1946, 1947, 1, 0, 0, 0, 1947, 1990, 1, 0, 0, 0, 1948, 1949, 3, 393, 196, 0, 1949, 1953, 3, 479, 239, 0, 1950, 1952, 3, 457, 228, 0, 1951, 1950, 1, 0, 0, 0, 1952, 1955, 1, 0, 0, 0, 1953, 1951, 1, 0, 0, 0, 1953, 1954, 1, 0, 0, 0, 1954, 1956, 1, 0, 0, 0, 1955, 1953, 1, 0, 0, 0, 1956, 1959, 3, 409, 204, 0, 1957, 1960, 3, 515, 257, 0, 1958, 1960, 3, 475, 237, 0, 1959, 1957, 1, 0, 0, 0, 1959, 1958, 1, 0, 0, 0, 1959, 1960, 1, 0, 0, 0, 1960, 1962, 1, 0, 0, 0, 1961, 1963, 3, 457, 228, 0, 1962, 1961, 1, 0, 0, 0, 1963, 1964, 1, 0, 0, 0, 1964, 1962, 1, 0, 0, 0, 1964, 1965, 1, 0, 0, 0, 1965, 1990, 1, 0, 0, 0, 1966, 1967, 3, 479, 239, 0, 1967, 1968, 3, 393, 196, 0, 1968, 1971, 3, 409, 204, 0, 1969, 1972, 3, 515, 257, 0, 1970, 1972, 3, 475, 237, 0, 1971, 1969, 1, 0, 0, 0, 1971, 1970, 1, 0, 0, 0, 1971, 1972, 1, 0, 0, 0, 1972, 1974, 1, 0, 0, 0, 1973, 1975, 3, 457, 228, 0, 1974, 1973, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 1974, 1, 0, 0, 0, 1976, 1977, 1, 0, 0, 0, 1977, 1990, 1, 0, 0, 0, 1978, 1979, 3, 393, 196, 0, 1979, 1982, 3, 409, 204, 0, 1980, 1983, 3, 515, 257, 0, 1981, 1983, 3, 475, 237, 0, 1982, 1980, 1, 0, 0, 0, 1982, 1981, 1, 0, 0, 0, 1982, 1983, 1, 0, 0, 0, 1983, 1985, 1, 0, 0, 0, 1984, 1986, 3, 457, 228, 0, 1985, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1985, 1, 0, 0, 0, 1987, 1988, 1, 0, 0, 0, 1988, 1990, 1, 0, 0, 0, 1989, 1913, 1, 0, 0, 0, 1989, 1934, 1, 0, 0, 0, 1989, 1948, 1, 0, 0, 0, 1989, 1966, 1, 0, 0, 0, 1989, 1978, 1, 0, 0, 0, 1990, 390, 1, 0, 0, 0, 1991, 1993, 5, 48, 0, 0, 1992, 1994, 3, 455, 227, 0, 1993, 1992, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1993, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 392, 1, 0, 0, 0, 1997, 1999, 3, 457, 228, 0, 1998, 1997, 1, 0, 0, 0, 1999, 2000, 1, 0, 0, 0, 2000, 1998, 1, 0, 0, 0, 2000, 2001, 1, 0, 0, 0, 2001, 394, 1, 0, 0, 0, 2002, 2003, 5, 48, 0, 0, 2003, 2005, 3, 447, 223, 0, 2004, 2006, 3, 459, 229, 0, 2005, 2004, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2005, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 396, 1, 0, 0, 0, 2009, 2017, 3, 521, 260, 0, 2010, 2016, 8, 2, 0, 0, 2011, 2016, 3, 385, 192, 0, 2012, 2013, 3, 521, 260, 0, 2013, 2014, 3, 521, 260, 0, 2014, 2016, 1, 0, 0, 0, 2015, 2010, 1, 0, 0, 0, 2015, 2011, 1, 0, 0, 0, 2015, 2012, 1, 0, 0, 0, 2016, 2019, 1, 0, 0, 0, 2017, 2015, 1, 0, 0, 0, 2017, 2018, 1, 0, 0, 0, 2018, 2020, 1, 0, 0, 0, 2019, 2017, 1, 0, 0, 0, 2020, 2021, 3, 521, 260, 0, 2021, 398, 1, 0, 0, 0, 2022, 2030, 3, 495, 247, 0, 2023, 2029, 8, 3, 0, 0, 2024, 2029, 3, 385, 192, 0, 2025, 2026, 3, 495, 247, 0, 2026, 2027, 3, 495, 247, 0, 2027, 2029, 1, 0, 0, 0, 2028, 2023, 1, 0, 0, 0, 2028, 2024, 1, 0, 0, 0, 2028, 2025, 1, 0, 0, 0, 2029, 2032, 1, 0, 0, 0, 2030, 2028, 1, 0, 0, 0, 2030, 2031, 1, 0, 0, 0, 2031, 2033, 1, 0, 0, 0, 2032, 2030, 1, 0, 0, 0, 2033, 2034, 3, 527, 263, 0, 2034, 400, 1, 0, 0, 0, 2035, 2036, 7, 4, 0, 0, 2036, 402, 1, 0, 0, 0, 2037, 2038, 7, 5, 0, 0, 2038, 404, 1, 0, 0, 0, 2039, 2040, 7, 6, 0, 0, 2040, 406, 1, 0, 0, 0, 2041, 2042, 7, 7, 0, 0, 2042, 408, 1, 0, 0, 0, 2043, 2044, 7, 8, 0, 0, 2044, 410, 1, 0, 0, 0, 2045, 2046, 7, 9, 0, 0, 2046, 412, 1, 0, 0, 0, 2047, 2048, 7, 10, 0, 0, 2048, 414, 1, 0, 0, 0, 2049, 2050, 7, 11, 0, 0, 2050, 416, 1, 0, 0, 0, 2051, 2052, 7, 12, 0, 0, 2052, 418, 1, 0, 0, 0, 2053, 2054, 7, 13, 0, 0, 2054, 420, 1, 0, 0, 0, 2055, 2056, 7, 14, 0, 0, 2056, 422, 1, 0, 0, 0, 2057, 2058, 7, 15, 0, 0, 2058, 424, 1, 0, 0, 0, 2059, 2060, 7, 16, 0, 0, 2060, 426, 1, 0, 0, 0, 2061, 2062, 7, 17, 0, 0, 2062, 428, 1, 0, 0, 0, 2063, 2064, 7, 18, 0, 0, 2064, 430, 1, 0, 0, 0, 2065, 2066, 7, 19, 0, 0, 2066, 432, 1, 0, 0, 0, 2067, 2068, 7, 20, 0, 0, 2068, 434, 1, 0, 0, 0, 2069, 2070, 7, 21, 0, 0, 2070, 436, 1, 0, 0, 0, 2071, 2072, 7, 22, 0, 0, 2072, 438, 1, 0, 0, 0, 2073, 2074, 7, 23, 0, 0, 2074, 440, 1, 0, 0, 0, 2075, 2076, 7, 24, 0, 0, 2076, 442, 1, 0, 0, 0, 2077, 2078, 7, 25, 0, 0, 2078, 444, 1, 0, 0, 0, 2079, 2080, 7, 26, 0, 0, 2080, 446, 1, 0, 0, 0, 2081, 2082, 7, 27, 0, 0, 2082, 448, 1, 0, 0, 0, 2083, 2084, 7, 28, 0, 0, 2084, 450, 1, 0, 0, 0, 2085, 2086, 7, 29, 0, 0, 2086, 452, 1, 0, 0, 0, 2087, 2088, 7, 30, 0, 0, 2088, 454, 1, 0, 0, 0, 2089, 2090, 7, 31, 0, 0, 2090, 456, 1, 0, 0, 0, 2091, 2092, 7, 32, 0, 0, 2092, 458, 1, 0, 0, 0, 2093, 2094, 7, 33, 0, 0, 2094, 460, 1, 0, 0, 0, 2095, 2096, 5, 45, 0, 0, 2096, 2097, 5, 62, 0, 0, 2097, 462, 1, 0, 0, 0, 2098, 2099, 5, 42, 0, 0, 2099, 464, 1, 0, 0, 0, 2100, 2101, 5, 96, 0, 0, 2101, 466, 1, 0, 0, 0, 2102, 2103, 5, 92, 0, 0, 2103, 468, 1, 0, 0, 0, 2104, 2105, 5, 58, 0, 0, 2105, 470, 1, 0, 0, 0, 2106, 2107, 5, 44, 0, 0, 2107, 472, 1, 0, 0, 0, 2108, 2109, 5, 124, 0, 0, 2109, 2110, 5, 124, 0, 0, 2110, 474, 1, 0, 0, 0, 2111, 2112, 5, 45, 0, 0, 2112, 476, 1, 0, 0, 0, 2113, 2114, 5, 36, 0, 0, 2114, 478, 1, 0, 0, 0, 2115, 2116, 5, 46, 0, 0, 2116, 480, 1, 0, 0, 0, 2117, 2118, 5, 61, 0, 0, 2118, 2119, 5, 61, 0, 0, 2119, 482, 1, 0, 0, 0, 2120, 2121, 5, 61, 0, 0, 2121, 484, 1, 0, 0, 0, 2122, 2123, 5, 62, 0, 0, 2123, 2124, 5, 61, 0, 0, 2124, 486, 1, 0, 0, 0, 2125, 2126, 5, 62, 0, 0, 2126, 488, 1, 0, 0, 0, 2127, 2128, 5, 35, 0, 0, 2128, 490, 1, 0, 0, 0, 2129, 2130, 5, 126, 0, 0, 2130, 2131, 5, 42, 0, 0, 2131, 492, 1, 0, 0, 0, 2132, 2133, 5, 61, 0, 0, 2133, 2134, 5, 126, 0, 0, 2134, 2135, 5, 42, 0, 0, 2135, 494, 1, 0, 0, 0, 2136, 2137, 5, 123, 0, 0, 2137, 496, 1, 0, 0, 0, 2138, 2139, 5, 91, 0, 0, 2139, 498, 1, 0, 0, 0, 2140, 2141, 5, 40, 0, 0, 2141, 500, 1, 0, 0, 0, 2142, 2143, 5, 60, 0, 0, 2143, 2144, 5, 61, 0, 0, 2144, 502, 1, 0, 0, 0, 2145, 2146, 5, 60, 0, 0, 2146, 504, 1, 0, 0, 0, 2147, 2148, 5, 33, 0, 0, 2148, 2152, 5, 61, 0, 0, 2149, 2150, 5, 60, 0, 0, 2150, 2152, 5, 62, 0, 0, 2151, 2147, 1, 0, 0, 0, 2151, 2149, 1, 0, 0, 0, 2152, 506, 1, 0, 0, 0, 2153, 2154, 5, 33, 0, 0, 2154, 2155, 5, 126, 0, 0, 2155, 2156, 5, 42, 0, 0, 2156, 508, 1, 0, 0, 0, 2157, 2158, 5, 33, 0, 0, 2158, 2159, 5, 126, 0, 0, 2159, 510, 1, 0, 0, 0, 2160, 2161, 5, 63, 0, 0, 2161, 2162, 5, 63, 0, 0, 2162, 512, 1, 0, 0, 0, 2163, 2164, 5, 37, 0, 0, 2164, 514, 1, 0, 0, 0, 2165, 2166, 5, 43, 0, 0, 2166, 516, 1, 0, 0, 0, 2167, 2168, 5, 63, 0, 0, 2168, 518, 1, 0, 0, 0, 2169, 2170, 5, 34, 0, 0, 2170, 520, 1, 0, 0, 0, 2171, 2172, 5, 39, 0, 0, 2172, 522, 1, 0, 0, 0, 2173, 2174, 5, 126, 0, 0, 2174, 524, 1, 0, 0, 0, 2175, 2176, 5, 61, 0, 0, 2176, 2177, 5, 126, 0, 0, 2177, 526, 1, 0, 0, 0, 2178, 2179, 5, 125, 0, 0, 2179, 528, 1, 0, 0, 0, 2180, 2181, 5, 93, 0, 0, 2181, 530, 1, 0, 0, 0, 2182, 2183, 5, 41, 0, 0, 2183, 532, 1, 0, 0, 0, 2184, 2185, 5, 59, 0, 0, 2185, 534, 1, 0, 0, 0, 2186, 2187, 5, 47, 0, 0, 2187, 536, 1, 0, 0, 0, 2188, 2189, 5, 95, 0, 0, 2189, 538, 1, 0, 0, 0, 2190, 2191, 5, 47, 0, 0, 2191, 2192, 5, 42, 0, 0, 2192, 2196, 1, 0, 0, 0, 2193, 2195, 9, 0, 0, 0, 2194, 2193, 1, 0, 0, 0, 2195, 2198, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2196, 2194, 1, 0, 0, 0, 2197, 2199, 1, 0, 0, 0, 2198, 2196, 1, 0, 0, 0, 2199, 2200, 5, 42, 0, 0, 2200, 2201, 5, 47, 0, 0, 2201, 2202, 1, 0, 0, 0, 2202, 2203, 6, 269, 0, 0, 2203, 540, 1, 0, 0, 0, 2204, 2205, 5, 45, 0, 0, 2205, 2206, 5, 45, 0, 0, 2206, 2210, 1, 0, 0, 0, 2207, 2209, 8, 34, 0, 0, 2208, 2207, 1, 0, 0, 0, 2209, 2212, 1, 0, 0, 0, 2210, 2208, 1, 0, 0, 0, 2210, 2211, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2210, 1, 0, 0, 0, 2213, 2215, 7, 35, 0, 0, 2214, 2213, 1, 0, 0, 0, 2215, 2216, 1, 0, 0, 0, 2216, 2217, 6, 270, 0, 0, 2217, 542, 1, 0, 0, 0, 2218, 2219, 7, 36, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 6, 271, 1, 0, 2221, 544, 1, 0, 0, 0, 39, 0, 607, 1112, 1826, 1869, 1874, 1880, 1882, 1891, 1893, 1904, 1906, 1911, 1918, 1923, 1927, 1932, 1937, 1941, 1946, 1953, 1959, 1964, 1971, 1976, 1982, 1987, 1989, 1995, 2000, 2007, 2015, 2017, 2028, 2030, 2151, 2196, 2210, 2214, 2, 6, 0, 0, 0, 1, 0] \ No newline at end of file diff --git a/posthog/hogql/grammar/HogQLLexer.py b/posthog/hogql/grammar/HogQLLexer.py index d539e720fb8a4..59a779fd1e0e5 100644 --- a/posthog/hogql/grammar/HogQLLexer.py +++ b/posthog/hogql/grammar/HogQLLexer.py @@ -10,7 +10,7 @@ def serializedATN(): return [ - 4,0,236,2191,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, + 4,0,242,2222,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, 5,2,6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12, 2,13,7,13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19, 7,19,2,20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25, @@ -55,837 +55,849 @@ def serializedATN(): 7,246,2,247,7,247,2,248,7,248,2,249,7,249,2,250,7,250,2,251,7,251, 2,252,7,252,2,253,7,253,2,254,7,254,2,255,7,255,2,256,7,256,2,257, 7,257,2,258,7,258,2,259,7,259,2,260,7,260,2,261,7,261,2,262,7,262, - 2,263,7,263,2,264,7,264,2,265,7,265,1,0,1,0,1,0,1,0,1,1,1,1,1,1, - 1,1,1,1,1,1,1,2,1,2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4,1,4,1,4, - 1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7, - 1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1,10,1,10, - 1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,596,8,10,1,11,1,11, - 1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13, - 1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,1,15,1,15,1,15, - 1,15,1,15,1,16,1,16,1,16,1,16,1,16,1,17,1,17,1,17,1,18,1,18,1,18, - 1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1,20,1,20, - 1,21,1,21,1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1,22,1,22, - 1,22,1,23,1,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,24,1,24,1,24, - 1,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26, - 1,26,1,26,1,26,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,28,1,28, - 1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29, - 1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31, - 1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1,33, - 1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34, - 1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1,37,1,37, - 1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,38,1,38,1,38, - 1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,39,1,40,1,40, - 1,40,1,40,1,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,42, - 1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1,43,1,43, - 1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1,45,1,45, - 1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46, - 1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1,47, - 1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49, - 1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1,50,1,50, - 1,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,53,1,53,1,53, - 1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,55,1,55, - 1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, - 1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,58,1,58, - 1,58,1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59, - 1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,61, - 1,62,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63, - 1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65, - 1,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1,67, - 1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,69,1,69,1,69, - 1,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71,1,71,1,71, - 1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1,72,1,72, - 1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1,74,1,74, - 1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,76, - 1,76,1,76,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1,79, - 1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,81, - 1,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,1101,8,81,1,82,1,82,1,82, - 1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1,83,1,83, - 1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85, - 1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,88,1,88, - 1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,89,1,89, - 1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,92, - 1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1,94,1,94, - 1,94,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1,96,1,96, - 1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,98, - 1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100,1,100,1, - 100,1,100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,102,1,102, - 1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,103, + 2,263,7,263,2,264,7,264,2,265,7,265,2,266,7,266,2,267,7,267,2,268, + 7,268,2,269,7,269,2,270,7,270,2,271,7,271,1,0,1,0,1,0,1,0,1,1,1, + 1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,4,1, + 4,1,4,1,4,1,4,1,4,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1, + 7,1,7,1,8,1,8,1,8,1,8,1,8,1,8,1,9,1,9,1,9,1,10,1,10,1,10,1,10,1, + 10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,1,10,3,10,608,8,10,1, + 11,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1, + 13,1,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15,1,15,1, + 15,1,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,1,17,1,17,1,17,1,18,1, + 18,1,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1,20,1, + 20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1, + 22,1,22,1,22,1,23,1,23,1,23,1,23,1,23,1,23,1,24,1,24,1,24,1,24,1, + 24,1,24,1,24,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1, + 26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1,27,1, + 28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1, + 29,1,29,1,29,1,29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1, + 31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1, + 33,1,33,1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1, + 34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,36,1,36,1,36,1,36,1, + 37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,38,1, + 38,1,38,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,39,1, + 40,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,42,1, + 42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1,43,1,43,1, + 43,1,43,1,43,1,43,1,43,1,43,1,44,1,44,1,44,1,44,1,44,1,44,1,44,1, + 45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1, + 46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1, + 47,1,47,1,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1, + 49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1,50,1,50,1, + 50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,53,1, + 53,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1, + 55,1,55,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1, + 56,1,56,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1,57,1, + 58,1,58,1,58,1,58,1,58,1,58,1,58,1,58,1,59,1,59,1,59,1,59,1,59,1, + 59,1,59,1,59,1,60,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1, + 61,1,61,1,62,1,62,1,62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1, + 63,1,63,1,63,1,63,1,63,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1, + 65,1,65,1,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1, + 67,1,67,1,68,1,68,1,68,1,68,1,68,1,69,1,69,1,69,1,69,1,69,1,69,1, + 69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1,71,1,71,1,71,1, + 71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,72,1,72,1,72,1,72,1, + 72,1,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,74,1,74,1,74,1,74,1, + 74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1, + 75,1,76,1,76,1,76,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1, + 79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1, + 81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,1,81,3,81,1113,8,81,1,82,1, + 82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,82,1,83,1,83,1,83,1,83,1, + 83,1,83,1,84,1,84,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1, + 85,1,85,1,85,1,85,1,85,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1, + 88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1,88,1, + 89,1,89,1,89,1,89,1,89,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91,1, + 91,1,92,1,92,1,92,1,92,1,92,1,93,1,93,1,93,1,93,1,93,1,93,1,93,1, + 94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,95,1,95,1,95,1,95,1,95,1, + 96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1, + 97,1,98,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,100, + 1,100,1,100,1,100,1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,102, + 1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102,1,102, 1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103,1,103, - 1,103,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105, - 1,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107,1,107,1,107, - 1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,109, - 1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,111,1,111,1,111, - 1,111,1,111,1,111,1,111,1,111,1,111,1,112,1,112,1,112,1,112,1,113, - 1,113,1,113,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115, - 1,116,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117, - 1,117,1,117,1,118,1,118,1,118,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,1,120,1,120,1,120,1,121,1,121,1,121,1,121,1,121, - 1,121,1,122,1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123, - 1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,125,1,125, - 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,126,1,126,1,126, - 1,126,1,126,1,126,1,126,1,126,1,126,1,127,1,127,1,127,1,127,1,127, - 1,127,1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128,1,128, - 1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129,1,129, - 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, - 1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,132,1,132,1,132, - 1,132,1,132,1,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133,1,134, - 1,134,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135,1,135, - 1,135,1,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,137, - 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138,1,138, - 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139, - 1,139,1,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,141,1,141, - 1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143,1,143, - 1,143,1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,145, - 1,145,1,145,1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146,1,146, - 1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,149, - 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,150,1,150,1,150, - 1,150,1,150,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,152,1,152, - 1,152,1,152,1,152,1,152,1,153,1,153,1,153,1,153,1,153,1,154,1,154, - 1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155, - 1,155,1,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,157,1,157, - 1,157,1,157,1,157,1,157,1,157,1,158,1,158,1,158,1,158,1,158,1,158, - 1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,160,1,160,1,160,1,160, - 1,160,1,160,1,160,1,160,1,160,1,160,1,161,1,161,1,161,1,161,1,161, - 1,162,1,162,1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163,1,164, - 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,165,1,165, - 1,165,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,167,1,167, - 1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,169,1,169, - 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,170,1,170,1,170,1,170, - 1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,172, - 1,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,175,1,175,1,175,1,175, - 1,175,1,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,177,1,177, - 1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,179,1,179,1,179, - 1,179,1,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,181,1,181, - 1,181,1,181,1,181,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,183, - 1,183,1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184,1,185, - 1,185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,187, - 1,187,1,187,1,187,1,187,1,187,1,187,1,188,1,188,1,188,1,188,1,188, - 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,3,189, - 1815,8,189,1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191,1,191, - 1,191,1,191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, + 1,103,1,103,1,104,1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105, + 1,105,1,105,1,106,1,106,1,106,1,106,1,107,1,107,1,107,1,107,1,107, + 1,107,1,107,1,108,1,108,1,108,1,108,1,108,1,108,1,108,1,109,1,109, + 1,109,1,109,1,109,1,109,1,110,1,110,1,110,1,110,1,110,1,111,1,111, + 1,111,1,111,1,111,1,111,1,111,1,111,1,111,1,112,1,112,1,112,1,112, + 1,113,1,113,1,113,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115, + 1,115,1,116,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117, + 1,117,1,117,1,117,1,118,1,118,1,118,1,119,1,119,1,119,1,119,1,119, + 1,119,1,119,1,119,1,119,1,120,1,120,1,120,1,121,1,121,1,121,1,121, + 1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,122,1,123,1,123,1,123, + 1,123,1,123,1,123,1,123,1,123,1,124,1,124,1,124,1,124,1,124,1,125, + 1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,125,1,126,1,126, + 1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,127,1,127,1,127,1,127, + 1,127,1,127,1,127,1,127,1,127,1,127,1,128,1,128,1,128,1,128,1,128, + 1,128,1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129,1,129,1,129, + 1,129,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130, + 1,130,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,131,1,132,1,132, + 1,132,1,132,1,132,1,132,1,133,1,133,1,133,1,133,1,133,1,133,1,133, + 1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135,1,135, + 1,135,1,135,1,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,136, + 1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,137,1,138,1,138,1,138, + 1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139, + 1,139,1,139,1,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,141, + 1,141,1,141,1,141,1,142,1,142,1,142,1,142,1,142,1,143,1,143,1,143, + 1,143,1,143,1,143,1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144, + 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146, + 1,146,1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148, + 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,150,1,150, + 1,150,1,150,1,150,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,152, + 1,152,1,152,1,152,1,152,1,152,1,153,1,153,1,153,1,153,1,153,1,154, + 1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,154,1,155,1,155, + 1,155,1,155,1,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,157, + 1,157,1,157,1,157,1,157,1,157,1,157,1,158,1,158,1,158,1,158,1,158, + 1,158,1,159,1,159,1,159,1,159,1,159,1,159,1,159,1,160,1,160,1,160, + 1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,161,1,161,1,161,1,161, + 1,161,1,162,1,162,1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163, + 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,165, + 1,165,1,165,1,165,1,165,1,165,1,165,1,165,1,166,1,166,1,166,1,167, + 1,167,1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,168,1,168,1,169, + 1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,169,1,170,1,170,1,170, + 1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171, + 1,172,1,172,1,172,1,172,1,173,1,173,1,173,1,173,1,173,1,174,1,174, + 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,175,1,175,1,175, + 1,175,1,175,1,175,1,176,1,176,1,176,1,176,1,176,1,176,1,176,1,177, + 1,177,1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178,1,179,1,179, + 1,179,1,179,1,179,1,180,1,180,1,180,1,180,1,180,1,180,1,180,1,181, + 1,181,1,181,1,181,1,181,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,183,1,183,1,183,1,183,1,183,1,183,1,184,1,184,1,184,1,184,1,184, + 1,185,1,185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186, + 1,187,1,187,1,187,1,187,1,187,1,187,1,187,1,188,1,188,1,188,1,188, + 1,188,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189, + 3,189,1827,8,189,1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191, + 1,191,1,191,1,191,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, - 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,3,192, - 1858,8,192,1,193,1,193,1,193,3,193,1863,8,193,1,193,1,193,1,193, - 1,193,5,193,1869,8,193,10,193,12,193,1872,9,193,1,193,1,193,1,193, - 1,193,1,193,1,193,5,193,1880,8,193,10,193,12,193,1883,9,193,1,193, - 1,193,1,193,1,193,1,193,1,193,1,193,1,193,5,193,1893,8,193,10,193, - 12,193,1896,9,193,1,193,1,193,3,193,1900,8,193,1,194,1,194,1,194, - 5,194,1905,8,194,10,194,12,194,1908,9,194,1,194,1,194,3,194,1912, - 8,194,1,194,1,194,3,194,1916,8,194,1,194,4,194,1919,8,194,11,194, - 12,194,1920,1,194,1,194,1,194,3,194,1926,8,194,1,194,1,194,3,194, - 1930,8,194,1,194,4,194,1933,8,194,11,194,12,194,1934,1,194,1,194, - 1,194,5,194,1940,8,194,10,194,12,194,1943,9,194,1,194,1,194,1,194, - 3,194,1948,8,194,1,194,4,194,1951,8,194,11,194,12,194,1952,1,194, - 1,194,1,194,1,194,1,194,3,194,1960,8,194,1,194,4,194,1963,8,194, - 11,194,12,194,1964,1,194,1,194,1,194,1,194,3,194,1971,8,194,1,194, - 4,194,1974,8,194,11,194,12,194,1975,3,194,1978,8,194,1,195,1,195, - 4,195,1982,8,195,11,195,12,195,1983,1,196,4,196,1987,8,196,11,196, - 12,196,1988,1,197,1,197,1,197,4,197,1994,8,197,11,197,12,197,1995, - 1,198,1,198,1,198,1,198,1,198,1,198,5,198,2004,8,198,10,198,12,198, - 2007,9,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199,5,199, - 2017,8,199,10,199,12,199,2020,9,199,1,199,1,199,1,200,1,200,1,201, - 1,201,1,202,1,202,1,203,1,203,1,204,1,204,1,205,1,205,1,206,1,206, - 1,207,1,207,1,208,1,208,1,209,1,209,1,210,1,210,1,211,1,211,1,212, - 1,212,1,213,1,213,1,214,1,214,1,215,1,215,1,216,1,216,1,217,1,217, - 1,218,1,218,1,219,1,219,1,220,1,220,1,221,1,221,1,222,1,222,1,223, - 1,223,1,224,1,224,1,225,1,225,1,226,1,226,1,227,1,227,1,228,1,228, - 1,229,1,229,1,230,1,230,1,230,1,231,1,231,1,232,1,232,1,233,1,233, - 1,234,1,234,1,235,1,235,1,236,1,236,1,236,1,237,1,237,1,238,1,238, - 1,239,1,239,1,240,1,240,1,240,1,241,1,241,1,242,1,242,1,242,1,243, - 1,243,1,244,1,244,1,245,1,245,1,246,1,246,1,247,1,247,1,247,1,248, - 1,248,1,249,1,249,1,250,1,250,1,250,1,250,3,250,2133,8,250,1,251, - 1,251,1,251,1,252,1,252,1,253,1,253,1,254,1,254,1,255,1,255,1,256, - 1,256,1,257,1,257,1,258,1,258,1,259,1,259,1,260,1,260,1,261,1,261, - 1,262,1,262,1,263,1,263,1,263,1,263,5,263,2164,8,263,10,263,12,263, - 2167,9,263,1,263,1,263,1,263,1,263,1,263,1,264,1,264,1,264,1,264, - 5,264,2178,8,264,10,264,12,264,2181,9,264,1,264,3,264,2184,8,264, - 1,264,1,264,1,265,1,265,1,265,1,265,1,2165,0,266,1,1,3,2,5,3,7,4, - 9,5,11,6,13,7,15,8,17,9,19,10,21,11,23,12,25,13,27,14,29,15,31,16, - 33,17,35,18,37,19,39,20,41,21,43,22,45,23,47,24,49,25,51,26,53,27, - 55,28,57,29,59,30,61,31,63,32,65,33,67,34,69,35,71,36,73,37,75,38, - 77,39,79,40,81,41,83,42,85,43,87,44,89,45,91,46,93,47,95,48,97,49, - 99,50,101,51,103,52,105,53,107,54,109,55,111,56,113,57,115,58,117, - 59,119,60,121,61,123,62,125,63,127,64,129,65,131,66,133,67,135,68, - 137,69,139,70,141,71,143,72,145,73,147,74,149,75,151,76,153,77,155, - 78,157,79,159,80,161,81,163,82,165,83,167,84,169,85,171,86,173,87, - 175,88,177,89,179,90,181,91,183,92,185,93,187,94,189,95,191,96,193, - 97,195,98,197,99,199,100,201,101,203,102,205,103,207,104,209,105, - 211,106,213,107,215,108,217,109,219,110,221,111,223,112,225,113, - 227,114,229,115,231,116,233,117,235,118,237,119,239,120,241,121, - 243,122,245,123,247,124,249,125,251,126,253,127,255,128,257,129, - 259,130,261,131,263,132,265,133,267,134,269,135,271,136,273,137, - 275,138,277,139,279,140,281,141,283,142,285,143,287,144,289,145, - 291,146,293,147,295,148,297,149,299,150,301,151,303,152,305,153, - 307,154,309,155,311,156,313,157,315,158,317,159,319,160,321,161, - 323,162,325,163,327,164,329,165,331,166,333,167,335,168,337,169, - 339,170,341,171,343,172,345,173,347,174,349,175,351,176,353,177, - 355,178,357,179,359,180,361,181,363,182,365,183,367,184,369,185, - 371,186,373,187,375,188,377,189,379,190,381,191,383,192,385,193, - 387,194,389,195,391,196,393,197,395,198,397,199,399,200,401,0,403, - 0,405,0,407,0,409,0,411,0,413,0,415,0,417,0,419,0,421,0,423,0,425, - 0,427,0,429,0,431,0,433,0,435,0,437,0,439,0,441,0,443,0,445,0,447, - 0,449,0,451,0,453,0,455,0,457,0,459,0,461,201,463,202,465,203,467, - 204,469,205,471,206,473,207,475,208,477,209,479,210,481,211,483, - 212,485,213,487,214,489,215,491,216,493,217,495,218,497,219,499, - 220,501,221,503,222,505,223,507,224,509,225,511,226,513,227,515, - 228,517,229,519,230,521,231,523,232,525,233,527,234,529,235,531, - 236,1,0,37,2,0,92,92,96,96,2,0,34,34,92,92,2,0,39,39,92,92,2,0,92, - 92,125,125,2,0,65,65,97,97,2,0,66,66,98,98,2,0,67,67,99,99,2,0,68, - 68,100,100,2,0,69,69,101,101,2,0,70,70,102,102,2,0,71,71,103,103, - 2,0,72,72,104,104,2,0,73,73,105,105,2,0,74,74,106,106,2,0,75,75, - 107,107,2,0,76,76,108,108,2,0,77,77,109,109,2,0,78,78,110,110,2, - 0,79,79,111,111,2,0,80,80,112,112,2,0,81,81,113,113,2,0,82,82,114, - 114,2,0,83,83,115,115,2,0,84,84,116,116,2,0,85,85,117,117,2,0,86, - 86,118,118,2,0,87,87,119,119,2,0,88,88,120,120,2,0,89,89,121,121, - 2,0,90,90,122,122,2,0,65,90,97,122,1,0,48,55,1,0,48,57,3,0,48,57, - 65,70,97,102,2,0,10,10,13,13,2,1,10,10,13,13,2,0,9,13,32,32,2221, - 0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11, - 1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21, - 1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0,0,0,0,31, - 1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,41, - 1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51, - 1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0,0,0,0,61, - 1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0,0,0,0,71, - 1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81, - 1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91, - 1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101, - 1,0,0,0,0,103,1,0,0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0, - 0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0,0,119,1, - 0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125,1,0,0,0,0,127,1,0,0,0,0, - 129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0,0,135,1,0,0,0,0,137,1,0, - 0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1,0,0,0,0,145,1,0,0,0,0,147, - 1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155,1,0,0,0, - 0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0,0,165,1, - 0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0, - 175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0,183,1,0, - 0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193, - 1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0, - 0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0,0,211,1, - 0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217,1,0,0,0,0,219,1,0,0,0,0, - 221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0,229,1,0, - 0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1,0,0,0,0,237,1,0,0,0,0,239, - 1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0, - 0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0,0,257,1, - 0,0,0,0,259,1,0,0,0,0,261,1,0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0, - 267,1,0,0,0,0,269,1,0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0,275,1,0, - 0,0,0,277,1,0,0,0,0,279,1,0,0,0,0,281,1,0,0,0,0,283,1,0,0,0,0,285, - 1,0,0,0,0,287,1,0,0,0,0,289,1,0,0,0,0,291,1,0,0,0,0,293,1,0,0,0, - 0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0,0,0,0,301,1,0,0,0,0,303,1, - 0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309,1,0,0,0,0,311,1,0,0,0,0, - 313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0,0,319,1,0,0,0,0,321,1,0, - 0,0,0,323,1,0,0,0,0,325,1,0,0,0,0,327,1,0,0,0,0,329,1,0,0,0,0,331, - 1,0,0,0,0,333,1,0,0,0,0,335,1,0,0,0,0,337,1,0,0,0,0,339,1,0,0,0, - 0,341,1,0,0,0,0,343,1,0,0,0,0,345,1,0,0,0,0,347,1,0,0,0,0,349,1, - 0,0,0,0,351,1,0,0,0,0,353,1,0,0,0,0,355,1,0,0,0,0,357,1,0,0,0,0, - 359,1,0,0,0,0,361,1,0,0,0,0,363,1,0,0,0,0,365,1,0,0,0,0,367,1,0, - 0,0,0,369,1,0,0,0,0,371,1,0,0,0,0,373,1,0,0,0,0,375,1,0,0,0,0,377, - 1,0,0,0,0,379,1,0,0,0,0,381,1,0,0,0,0,383,1,0,0,0,0,385,1,0,0,0, - 0,387,1,0,0,0,0,389,1,0,0,0,0,391,1,0,0,0,0,393,1,0,0,0,0,395,1, - 0,0,0,0,397,1,0,0,0,0,399,1,0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0, - 465,1,0,0,0,0,467,1,0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473,1,0, - 0,0,0,475,1,0,0,0,0,477,1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483, - 1,0,0,0,0,485,1,0,0,0,0,487,1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0, - 0,493,1,0,0,0,0,495,1,0,0,0,0,497,1,0,0,0,0,499,1,0,0,0,0,501,1, - 0,0,0,0,503,1,0,0,0,0,505,1,0,0,0,0,507,1,0,0,0,0,509,1,0,0,0,0, - 511,1,0,0,0,0,513,1,0,0,0,0,515,1,0,0,0,0,517,1,0,0,0,0,519,1,0, - 0,0,0,521,1,0,0,0,0,523,1,0,0,0,0,525,1,0,0,0,0,527,1,0,0,0,0,529, - 1,0,0,0,0,531,1,0,0,0,1,533,1,0,0,0,3,537,1,0,0,0,5,543,1,0,0,0, - 7,549,1,0,0,0,9,553,1,0,0,0,11,559,1,0,0,0,13,563,1,0,0,0,15,568, - 1,0,0,0,17,572,1,0,0,0,19,578,1,0,0,0,21,595,1,0,0,0,23,597,1,0, - 0,0,25,602,1,0,0,0,27,606,1,0,0,0,29,612,1,0,0,0,31,619,1,0,0,0, - 33,627,1,0,0,0,35,632,1,0,0,0,37,635,1,0,0,0,39,640,1,0,0,0,41,645, - 1,0,0,0,43,651,1,0,0,0,45,657,1,0,0,0,47,665,1,0,0,0,49,671,1,0, - 0,0,51,678,1,0,0,0,53,686,1,0,0,0,55,693,1,0,0,0,57,701,1,0,0,0, - 59,712,1,0,0,0,61,719,1,0,0,0,63,725,1,0,0,0,65,730,1,0,0,0,67,738, - 1,0,0,0,69,747,1,0,0,0,71,757,1,0,0,0,73,762,1,0,0,0,75,766,1,0, - 0,0,77,778,1,0,0,0,79,786,1,0,0,0,81,792,1,0,0,0,83,799,1,0,0,0, - 85,804,1,0,0,0,87,815,1,0,0,0,89,824,1,0,0,0,91,831,1,0,0,0,93,844, - 1,0,0,0,95,855,1,0,0,0,97,860,1,0,0,0,99,869,1,0,0,0,101,881,1,0, - 0,0,103,886,1,0,0,0,105,891,1,0,0,0,107,895,1,0,0,0,109,902,1,0, - 0,0,111,909,1,0,0,0,113,916,1,0,0,0,115,924,1,0,0,0,117,935,1,0, - 0,0,119,943,1,0,0,0,121,951,1,0,0,0,123,957,1,0,0,0,125,963,1,0, - 0,0,127,969,1,0,0,0,129,979,1,0,0,0,131,983,1,0,0,0,133,990,1,0, - 0,0,135,997,1,0,0,0,137,1002,1,0,0,0,139,1007,1,0,0,0,141,1016,1, - 0,0,0,143,1023,1,0,0,0,145,1035,1,0,0,0,147,1041,1,0,0,0,149,1048, - 1,0,0,0,151,1061,1,0,0,0,153,1066,1,0,0,0,155,1069,1,0,0,0,157,1072, - 1,0,0,0,159,1078,1,0,0,0,161,1081,1,0,0,0,163,1100,1,0,0,0,165,1102, - 1,0,0,0,167,1112,1,0,0,0,169,1118,1,0,0,0,171,1125,1,0,0,0,173,1134, - 1,0,0,0,175,1139,1,0,0,0,177,1142,1,0,0,0,179,1155,1,0,0,0,181,1160, - 1,0,0,0,183,1164,1,0,0,0,185,1169,1,0,0,0,187,1174,1,0,0,0,189,1181, - 1,0,0,0,191,1189,1,0,0,0,193,1194,1,0,0,0,195,1203,1,0,0,0,197,1208, - 1,0,0,0,199,1214,1,0,0,0,201,1219,1,0,0,0,203,1225,1,0,0,0,205,1230, - 1,0,0,0,207,1242,1,0,0,0,209,1255,1,0,0,0,211,1259,1,0,0,0,213,1266, - 1,0,0,0,215,1270,1,0,0,0,217,1277,1,0,0,0,219,1284,1,0,0,0,221,1290, - 1,0,0,0,223,1295,1,0,0,0,225,1304,1,0,0,0,227,1308,1,0,0,0,229,1311, - 1,0,0,0,231,1315,1,0,0,0,233,1320,1,0,0,0,235,1326,1,0,0,0,237,1333, - 1,0,0,0,239,1336,1,0,0,0,241,1345,1,0,0,0,243,1348,1,0,0,0,245,1354, - 1,0,0,0,247,1360,1,0,0,0,249,1368,1,0,0,0,251,1373,1,0,0,0,253,1383, - 1,0,0,0,255,1392,1,0,0,0,257,1402,1,0,0,0,259,1411,1,0,0,0,261,1419, - 1,0,0,0,263,1430,1,0,0,0,265,1438,1,0,0,0,267,1444,1,0,0,0,269,1451, - 1,0,0,0,271,1458,1,0,0,0,273,1465,1,0,0,0,275,1473,1,0,0,0,277,1481, - 1,0,0,0,279,1492,1,0,0,0,281,1498,1,0,0,0,283,1505,1,0,0,0,285,1509, - 1,0,0,0,287,1514,1,0,0,0,289,1521,1,0,0,0,291,1528,1,0,0,0,293,1535, - 1,0,0,0,295,1540,1,0,0,0,297,1546,1,0,0,0,299,1550,1,0,0,0,301,1559, - 1,0,0,0,303,1564,1,0,0,0,305,1571,1,0,0,0,307,1577,1,0,0,0,309,1582, - 1,0,0,0,311,1592,1,0,0,0,313,1597,1,0,0,0,315,1604,1,0,0,0,317,1611, - 1,0,0,0,319,1617,1,0,0,0,321,1624,1,0,0,0,323,1634,1,0,0,0,325,1639, - 1,0,0,0,327,1644,1,0,0,0,329,1649,1,0,0,0,331,1657,1,0,0,0,333,1667, - 1,0,0,0,335,1670,1,0,0,0,337,1674,1,0,0,0,339,1681,1,0,0,0,341,1690, - 1,0,0,0,343,1695,1,0,0,0,345,1704,1,0,0,0,347,1708,1,0,0,0,349,1713, - 1,0,0,0,351,1723,1,0,0,0,353,1729,1,0,0,0,355,1736,1,0,0,0,357,1740, - 1,0,0,0,359,1746,1,0,0,0,361,1751,1,0,0,0,363,1758,1,0,0,0,365,1763, - 1,0,0,0,367,1770,1,0,0,0,369,1776,1,0,0,0,371,1781,1,0,0,0,373,1786, - 1,0,0,0,375,1792,1,0,0,0,377,1799,1,0,0,0,379,1814,1,0,0,0,381,1816, - 1,0,0,0,383,1822,1,0,0,0,385,1857,1,0,0,0,387,1899,1,0,0,0,389,1977, - 1,0,0,0,391,1979,1,0,0,0,393,1986,1,0,0,0,395,1990,1,0,0,0,397,1997, - 1,0,0,0,399,2010,1,0,0,0,401,2023,1,0,0,0,403,2025,1,0,0,0,405,2027, - 1,0,0,0,407,2029,1,0,0,0,409,2031,1,0,0,0,411,2033,1,0,0,0,413,2035, - 1,0,0,0,415,2037,1,0,0,0,417,2039,1,0,0,0,419,2041,1,0,0,0,421,2043, - 1,0,0,0,423,2045,1,0,0,0,425,2047,1,0,0,0,427,2049,1,0,0,0,429,2051, - 1,0,0,0,431,2053,1,0,0,0,433,2055,1,0,0,0,435,2057,1,0,0,0,437,2059, - 1,0,0,0,439,2061,1,0,0,0,441,2063,1,0,0,0,443,2065,1,0,0,0,445,2067, - 1,0,0,0,447,2069,1,0,0,0,449,2071,1,0,0,0,451,2073,1,0,0,0,453,2075, - 1,0,0,0,455,2077,1,0,0,0,457,2079,1,0,0,0,459,2081,1,0,0,0,461,2083, - 1,0,0,0,463,2086,1,0,0,0,465,2088,1,0,0,0,467,2090,1,0,0,0,469,2092, - 1,0,0,0,471,2094,1,0,0,0,473,2096,1,0,0,0,475,2099,1,0,0,0,477,2101, - 1,0,0,0,479,2103,1,0,0,0,481,2105,1,0,0,0,483,2108,1,0,0,0,485,2110, - 1,0,0,0,487,2113,1,0,0,0,489,2115,1,0,0,0,491,2117,1,0,0,0,493,2119, - 1,0,0,0,495,2121,1,0,0,0,497,2124,1,0,0,0,499,2126,1,0,0,0,501,2132, - 1,0,0,0,503,2134,1,0,0,0,505,2137,1,0,0,0,507,2139,1,0,0,0,509,2141, - 1,0,0,0,511,2143,1,0,0,0,513,2145,1,0,0,0,515,2147,1,0,0,0,517,2149, - 1,0,0,0,519,2151,1,0,0,0,521,2153,1,0,0,0,523,2155,1,0,0,0,525,2157, - 1,0,0,0,527,2159,1,0,0,0,529,2173,1,0,0,0,531,2187,1,0,0,0,533,534, - 3,401,200,0,534,535,3,407,203,0,535,536,3,407,203,0,536,2,1,0,0, - 0,537,538,3,401,200,0,538,539,3,411,205,0,539,540,3,439,219,0,540, - 541,3,409,204,0,541,542,3,435,217,0,542,4,1,0,0,0,543,544,3,401, - 200,0,544,545,3,423,211,0,545,546,3,417,208,0,546,547,3,401,200, - 0,547,548,3,437,218,0,548,6,1,0,0,0,549,550,3,401,200,0,550,551, - 3,423,211,0,551,552,3,423,211,0,552,8,1,0,0,0,553,554,3,401,200, - 0,554,555,3,423,211,0,555,556,3,439,219,0,556,557,3,409,204,0,557, - 558,3,435,217,0,558,10,1,0,0,0,559,560,3,401,200,0,560,561,3,427, - 213,0,561,562,3,407,203,0,562,12,1,0,0,0,563,564,3,401,200,0,564, - 565,3,427,213,0,565,566,3,439,219,0,566,567,3,417,208,0,567,14,1, - 0,0,0,568,569,3,401,200,0,569,570,3,427,213,0,570,571,3,449,224, - 0,571,16,1,0,0,0,572,573,3,401,200,0,573,574,3,435,217,0,574,575, - 3,435,217,0,575,576,3,401,200,0,576,577,3,449,224,0,577,18,1,0,0, - 0,578,579,3,401,200,0,579,580,3,437,218,0,580,20,1,0,0,0,581,582, - 3,401,200,0,582,583,3,437,218,0,583,584,3,405,202,0,584,596,1,0, - 0,0,585,586,3,401,200,0,586,587,3,437,218,0,587,588,3,405,202,0, - 588,589,3,409,204,0,589,590,3,427,213,0,590,591,3,407,203,0,591, - 592,3,417,208,0,592,593,3,427,213,0,593,594,3,413,206,0,594,596, - 1,0,0,0,595,581,1,0,0,0,595,585,1,0,0,0,596,22,1,0,0,0,597,598,3, - 401,200,0,598,599,3,437,218,0,599,600,3,429,214,0,600,601,3,411, - 205,0,601,24,1,0,0,0,602,603,3,401,200,0,603,604,3,437,218,0,604, - 605,3,439,219,0,605,26,1,0,0,0,606,607,3,401,200,0,607,608,3,437, - 218,0,608,609,3,449,224,0,609,610,3,427,213,0,610,611,3,405,202, - 0,611,28,1,0,0,0,612,613,3,401,200,0,613,614,3,439,219,0,614,615, - 3,439,219,0,615,616,3,401,200,0,616,617,3,405,202,0,617,618,3,415, - 207,0,618,30,1,0,0,0,619,620,3,403,201,0,620,621,3,409,204,0,621, - 622,3,439,219,0,622,623,3,445,222,0,623,624,3,409,204,0,624,625, - 3,409,204,0,625,626,3,427,213,0,626,32,1,0,0,0,627,628,3,403,201, - 0,628,629,3,429,214,0,629,630,3,439,219,0,630,631,3,415,207,0,631, - 34,1,0,0,0,632,633,3,403,201,0,633,634,3,449,224,0,634,36,1,0,0, - 0,635,636,3,405,202,0,636,637,3,401,200,0,637,638,3,437,218,0,638, - 639,3,409,204,0,639,38,1,0,0,0,640,641,3,405,202,0,641,642,3,401, - 200,0,642,643,3,437,218,0,643,644,3,439,219,0,644,40,1,0,0,0,645, - 646,3,405,202,0,646,647,3,415,207,0,647,648,3,409,204,0,648,649, - 3,405,202,0,649,650,3,421,210,0,650,42,1,0,0,0,651,652,3,405,202, - 0,652,653,3,423,211,0,653,654,3,409,204,0,654,655,3,401,200,0,655, - 656,3,435,217,0,656,44,1,0,0,0,657,658,3,405,202,0,658,659,3,423, - 211,0,659,660,3,441,220,0,660,661,3,437,218,0,661,662,3,439,219, - 0,662,663,3,409,204,0,663,664,3,435,217,0,664,46,1,0,0,0,665,666, - 3,405,202,0,666,667,3,429,214,0,667,668,3,407,203,0,668,669,3,409, - 204,0,669,670,3,405,202,0,670,48,1,0,0,0,671,672,3,405,202,0,672, - 673,3,429,214,0,673,674,3,415,207,0,674,675,3,429,214,0,675,676, - 3,435,217,0,676,677,3,439,219,0,677,50,1,0,0,0,678,679,3,405,202, - 0,679,680,3,429,214,0,680,681,3,423,211,0,681,682,3,423,211,0,682, - 683,3,401,200,0,683,684,3,439,219,0,684,685,3,409,204,0,685,52,1, - 0,0,0,686,687,3,405,202,0,687,688,3,429,214,0,688,689,3,423,211, - 0,689,690,3,441,220,0,690,691,3,425,212,0,691,692,3,427,213,0,692, - 54,1,0,0,0,693,694,3,405,202,0,694,695,3,429,214,0,695,696,3,425, - 212,0,696,697,3,425,212,0,697,698,3,409,204,0,698,699,3,427,213, - 0,699,700,3,439,219,0,700,56,1,0,0,0,701,702,3,405,202,0,702,703, - 3,429,214,0,703,704,3,427,213,0,704,705,3,437,218,0,705,706,3,439, - 219,0,706,707,3,435,217,0,707,708,3,401,200,0,708,709,3,417,208, - 0,709,710,3,427,213,0,710,711,3,439,219,0,711,58,1,0,0,0,712,713, - 3,405,202,0,713,714,3,435,217,0,714,715,3,409,204,0,715,716,3,401, - 200,0,716,717,3,439,219,0,717,718,3,409,204,0,718,60,1,0,0,0,719, - 720,3,405,202,0,720,721,3,435,217,0,721,722,3,429,214,0,722,723, - 3,437,218,0,723,724,3,437,218,0,724,62,1,0,0,0,725,726,3,405,202, - 0,726,727,3,441,220,0,727,728,3,403,201,0,728,729,3,409,204,0,729, - 64,1,0,0,0,730,731,3,405,202,0,731,732,3,441,220,0,732,733,3,435, - 217,0,733,734,3,435,217,0,734,735,3,409,204,0,735,736,3,427,213, - 0,736,737,3,439,219,0,737,66,1,0,0,0,738,739,3,407,203,0,739,740, - 3,401,200,0,740,741,3,439,219,0,741,742,3,401,200,0,742,743,3,403, - 201,0,743,744,3,401,200,0,744,745,3,437,218,0,745,746,3,409,204, - 0,746,68,1,0,0,0,747,748,3,407,203,0,748,749,3,401,200,0,749,750, - 3,439,219,0,750,751,3,401,200,0,751,752,3,403,201,0,752,753,3,401, - 200,0,753,754,3,437,218,0,754,755,3,409,204,0,755,756,3,437,218, - 0,756,70,1,0,0,0,757,758,3,407,203,0,758,759,3,401,200,0,759,760, - 3,439,219,0,760,761,3,409,204,0,761,72,1,0,0,0,762,763,3,407,203, - 0,763,764,3,401,200,0,764,765,3,449,224,0,765,74,1,0,0,0,766,767, - 3,407,203,0,767,768,3,409,204,0,768,769,3,407,203,0,769,770,3,441, - 220,0,770,771,3,431,215,0,771,772,3,423,211,0,772,773,3,417,208, - 0,773,774,3,405,202,0,774,775,3,401,200,0,775,776,3,439,219,0,776, - 777,3,409,204,0,777,76,1,0,0,0,778,779,3,407,203,0,779,780,3,409, - 204,0,780,781,3,411,205,0,781,782,3,401,200,0,782,783,3,441,220, - 0,783,784,3,423,211,0,784,785,3,439,219,0,785,78,1,0,0,0,786,787, - 3,407,203,0,787,788,3,409,204,0,788,789,3,423,211,0,789,790,3,401, - 200,0,790,791,3,449,224,0,791,80,1,0,0,0,792,793,3,407,203,0,793, - 794,3,409,204,0,794,795,3,423,211,0,795,796,3,409,204,0,796,797, - 3,439,219,0,797,798,3,409,204,0,798,82,1,0,0,0,799,800,3,407,203, - 0,800,801,3,409,204,0,801,802,3,437,218,0,802,803,3,405,202,0,803, - 84,1,0,0,0,804,805,3,407,203,0,805,806,3,409,204,0,806,807,3,437, - 218,0,807,808,3,405,202,0,808,809,3,409,204,0,809,810,3,427,213, - 0,810,811,3,407,203,0,811,812,3,417,208,0,812,813,3,427,213,0,813, - 814,3,413,206,0,814,86,1,0,0,0,815,816,3,407,203,0,816,817,3,409, - 204,0,817,818,3,437,218,0,818,819,3,405,202,0,819,820,3,435,217, - 0,820,821,3,417,208,0,821,822,3,403,201,0,822,823,3,409,204,0,823, - 88,1,0,0,0,824,825,3,407,203,0,825,826,3,409,204,0,826,827,3,439, - 219,0,827,828,3,401,200,0,828,829,3,405,202,0,829,830,3,415,207, - 0,830,90,1,0,0,0,831,832,3,407,203,0,832,833,3,417,208,0,833,834, - 3,405,202,0,834,835,3,439,219,0,835,836,3,417,208,0,836,837,3,429, - 214,0,837,838,3,427,213,0,838,839,3,401,200,0,839,840,3,435,217, - 0,840,841,3,417,208,0,841,842,3,409,204,0,842,843,3,437,218,0,843, - 92,1,0,0,0,844,845,3,407,203,0,845,846,3,417,208,0,846,847,3,405, - 202,0,847,848,3,439,219,0,848,849,3,417,208,0,849,850,3,429,214, - 0,850,851,3,427,213,0,851,852,3,401,200,0,852,853,3,435,217,0,853, - 854,3,449,224,0,854,94,1,0,0,0,855,856,3,407,203,0,856,857,3,417, - 208,0,857,858,3,437,218,0,858,859,3,421,210,0,859,96,1,0,0,0,860, - 861,3,407,203,0,861,862,3,417,208,0,862,863,3,437,218,0,863,864, - 3,439,219,0,864,865,3,417,208,0,865,866,3,427,213,0,866,867,3,405, - 202,0,867,868,3,439,219,0,868,98,1,0,0,0,869,870,3,407,203,0,870, - 871,3,417,208,0,871,872,3,437,218,0,872,873,3,439,219,0,873,874, - 3,435,217,0,874,875,3,417,208,0,875,876,3,403,201,0,876,877,3,441, - 220,0,877,878,3,439,219,0,878,879,3,409,204,0,879,880,3,407,203, - 0,880,100,1,0,0,0,881,882,3,407,203,0,882,883,3,435,217,0,883,884, - 3,429,214,0,884,885,3,431,215,0,885,102,1,0,0,0,886,887,3,409,204, - 0,887,888,3,423,211,0,888,889,3,437,218,0,889,890,3,409,204,0,890, - 104,1,0,0,0,891,892,3,409,204,0,892,893,3,427,213,0,893,894,3,407, - 203,0,894,106,1,0,0,0,895,896,3,409,204,0,896,897,3,427,213,0,897, - 898,3,413,206,0,898,899,3,417,208,0,899,900,3,427,213,0,900,901, - 3,409,204,0,901,108,1,0,0,0,902,903,3,409,204,0,903,904,3,443,221, - 0,904,905,3,409,204,0,905,906,3,427,213,0,906,907,3,439,219,0,907, - 908,3,437,218,0,908,110,1,0,0,0,909,910,3,409,204,0,910,911,3,447, - 223,0,911,912,3,417,208,0,912,913,3,437,218,0,913,914,3,439,219, - 0,914,915,3,437,218,0,915,112,1,0,0,0,916,917,3,409,204,0,917,918, - 3,447,223,0,918,919,3,431,215,0,919,920,3,423,211,0,920,921,3,401, - 200,0,921,922,3,417,208,0,922,923,3,427,213,0,923,114,1,0,0,0,924, - 925,3,409,204,0,925,926,3,447,223,0,926,927,3,431,215,0,927,928, - 3,435,217,0,928,929,3,409,204,0,929,930,3,437,218,0,930,931,3,437, - 218,0,931,932,3,417,208,0,932,933,3,429,214,0,933,934,3,427,213, - 0,934,116,1,0,0,0,935,936,3,409,204,0,936,937,3,447,223,0,937,938, - 3,439,219,0,938,939,3,435,217,0,939,940,3,401,200,0,940,941,3,405, - 202,0,941,942,3,439,219,0,942,118,1,0,0,0,943,944,3,411,205,0,944, - 945,3,409,204,0,945,946,3,439,219,0,946,947,3,405,202,0,947,948, - 3,415,207,0,948,949,3,409,204,0,949,950,3,437,218,0,950,120,1,0, - 0,0,951,952,3,411,205,0,952,953,3,417,208,0,953,954,3,427,213,0, - 954,955,3,401,200,0,955,956,3,423,211,0,956,122,1,0,0,0,957,958, - 3,411,205,0,958,959,3,417,208,0,959,960,3,435,217,0,960,961,3,437, - 218,0,961,962,3,439,219,0,962,124,1,0,0,0,963,964,3,411,205,0,964, - 965,3,423,211,0,965,966,3,441,220,0,966,967,3,437,218,0,967,968, - 3,415,207,0,968,126,1,0,0,0,969,970,3,411,205,0,970,971,3,429,214, - 0,971,972,3,423,211,0,972,973,3,423,211,0,973,974,3,429,214,0,974, - 975,3,445,222,0,975,976,3,417,208,0,976,977,3,427,213,0,977,978, - 3,413,206,0,978,128,1,0,0,0,979,980,3,411,205,0,980,981,3,429,214, - 0,981,982,3,435,217,0,982,130,1,0,0,0,983,984,3,411,205,0,984,985, - 3,429,214,0,985,986,3,435,217,0,986,987,3,425,212,0,987,988,3,401, - 200,0,988,989,3,439,219,0,989,132,1,0,0,0,990,991,3,411,205,0,991, - 992,3,435,217,0,992,993,3,409,204,0,993,994,3,409,204,0,994,995, - 3,451,225,0,995,996,3,409,204,0,996,134,1,0,0,0,997,998,3,411,205, - 0,998,999,3,435,217,0,999,1000,3,429,214,0,1000,1001,3,425,212,0, - 1001,136,1,0,0,0,1002,1003,3,411,205,0,1003,1004,3,441,220,0,1004, - 1005,3,423,211,0,1005,1006,3,423,211,0,1006,138,1,0,0,0,1007,1008, - 3,411,205,0,1008,1009,3,441,220,0,1009,1010,3,427,213,0,1010,1011, - 3,405,202,0,1011,1012,3,439,219,0,1012,1013,3,417,208,0,1013,1014, - 3,429,214,0,1014,1015,3,427,213,0,1015,140,1,0,0,0,1016,1017,3,413, - 206,0,1017,1018,3,423,211,0,1018,1019,3,429,214,0,1019,1020,3,403, - 201,0,1020,1021,3,401,200,0,1021,1022,3,423,211,0,1022,142,1,0,0, - 0,1023,1024,3,413,206,0,1024,1025,3,435,217,0,1025,1026,3,401,200, - 0,1026,1027,3,427,213,0,1027,1028,3,441,220,0,1028,1029,3,423,211, - 0,1029,1030,3,401,200,0,1030,1031,3,435,217,0,1031,1032,3,417,208, - 0,1032,1033,3,439,219,0,1033,1034,3,449,224,0,1034,144,1,0,0,0,1035, - 1036,3,413,206,0,1036,1037,3,435,217,0,1037,1038,3,429,214,0,1038, - 1039,3,441,220,0,1039,1040,3,431,215,0,1040,146,1,0,0,0,1041,1042, - 3,415,207,0,1042,1043,3,401,200,0,1043,1044,3,443,221,0,1044,1045, - 3,417,208,0,1045,1046,3,427,213,0,1046,1047,3,413,206,0,1047,148, - 1,0,0,0,1048,1049,3,415,207,0,1049,1050,3,417,208,0,1050,1051,3, - 409,204,0,1051,1052,3,435,217,0,1052,1053,3,401,200,0,1053,1054, - 3,435,217,0,1054,1055,3,405,202,0,1055,1056,3,415,207,0,1056,1057, - 3,417,208,0,1057,1058,3,405,202,0,1058,1059,3,401,200,0,1059,1060, - 3,423,211,0,1060,150,1,0,0,0,1061,1062,3,415,207,0,1062,1063,3,429, - 214,0,1063,1064,3,441,220,0,1064,1065,3,435,217,0,1065,152,1,0,0, - 0,1066,1067,3,417,208,0,1067,1068,3,407,203,0,1068,154,1,0,0,0,1069, - 1070,3,417,208,0,1070,1071,3,411,205,0,1071,156,1,0,0,0,1072,1073, - 3,417,208,0,1073,1074,3,423,211,0,1074,1075,3,417,208,0,1075,1076, - 3,421,210,0,1076,1077,3,409,204,0,1077,158,1,0,0,0,1078,1079,3,417, - 208,0,1079,1080,3,427,213,0,1080,160,1,0,0,0,1081,1082,3,417,208, - 0,1082,1083,3,427,213,0,1083,1084,3,407,203,0,1084,1085,3,409,204, - 0,1085,1086,3,447,223,0,1086,162,1,0,0,0,1087,1088,3,417,208,0,1088, - 1089,3,427,213,0,1089,1090,3,411,205,0,1090,1101,1,0,0,0,1091,1092, - 3,417,208,0,1092,1093,3,427,213,0,1093,1094,3,411,205,0,1094,1095, - 3,417,208,0,1095,1096,3,427,213,0,1096,1097,3,417,208,0,1097,1098, - 3,439,219,0,1098,1099,3,449,224,0,1099,1101,1,0,0,0,1100,1087,1, - 0,0,0,1100,1091,1,0,0,0,1101,164,1,0,0,0,1102,1103,3,417,208,0,1103, - 1104,3,427,213,0,1104,1105,3,419,209,0,1105,1106,3,409,204,0,1106, - 1107,3,405,202,0,1107,1108,3,439,219,0,1108,1109,3,417,208,0,1109, - 1110,3,443,221,0,1110,1111,3,409,204,0,1111,166,1,0,0,0,1112,1113, - 3,417,208,0,1113,1114,3,427,213,0,1114,1115,3,427,213,0,1115,1116, - 3,409,204,0,1116,1117,3,435,217,0,1117,168,1,0,0,0,1118,1119,3,417, - 208,0,1119,1120,3,427,213,0,1120,1121,3,437,218,0,1121,1122,3,409, - 204,0,1122,1123,3,435,217,0,1123,1124,3,439,219,0,1124,170,1,0,0, - 0,1125,1126,3,417,208,0,1126,1127,3,427,213,0,1127,1128,3,439,219, - 0,1128,1129,3,409,204,0,1129,1130,3,435,217,0,1130,1131,3,443,221, - 0,1131,1132,3,401,200,0,1132,1133,3,423,211,0,1133,172,1,0,0,0,1134, - 1135,3,417,208,0,1135,1136,3,427,213,0,1136,1137,3,439,219,0,1137, - 1138,3,429,214,0,1138,174,1,0,0,0,1139,1140,3,417,208,0,1140,1141, - 3,437,218,0,1141,176,1,0,0,0,1142,1143,3,417,208,0,1143,1144,3,437, - 218,0,1144,1145,3,525,262,0,1145,1146,3,429,214,0,1146,1147,3,403, - 201,0,1147,1148,3,419,209,0,1148,1149,3,409,204,0,1149,1150,3,405, - 202,0,1150,1151,3,439,219,0,1151,1152,3,525,262,0,1152,1153,3,417, - 208,0,1153,1154,3,407,203,0,1154,178,1,0,0,0,1155,1156,3,419,209, - 0,1156,1157,3,429,214,0,1157,1158,3,417,208,0,1158,1159,3,427,213, - 0,1159,180,1,0,0,0,1160,1161,3,421,210,0,1161,1162,3,409,204,0,1162, - 1163,3,449,224,0,1163,182,1,0,0,0,1164,1165,3,421,210,0,1165,1166, - 3,417,208,0,1166,1167,3,423,211,0,1167,1168,3,423,211,0,1168,184, - 1,0,0,0,1169,1170,3,423,211,0,1170,1171,3,401,200,0,1171,1172,3, - 437,218,0,1172,1173,3,439,219,0,1173,186,1,0,0,0,1174,1175,3,423, - 211,0,1175,1176,3,401,200,0,1176,1177,3,449,224,0,1177,1178,3,429, - 214,0,1178,1179,3,441,220,0,1179,1180,3,439,219,0,1180,188,1,0,0, - 0,1181,1182,3,423,211,0,1182,1183,3,409,204,0,1183,1184,3,401,200, - 0,1184,1185,3,407,203,0,1185,1186,3,417,208,0,1186,1187,3,427,213, - 0,1187,1188,3,413,206,0,1188,190,1,0,0,0,1189,1190,3,423,211,0,1190, - 1191,3,409,204,0,1191,1192,3,411,205,0,1192,1193,3,439,219,0,1193, - 192,1,0,0,0,1194,1195,3,423,211,0,1195,1196,3,417,208,0,1196,1197, - 3,411,205,0,1197,1198,3,409,204,0,1198,1199,3,439,219,0,1199,1200, - 3,417,208,0,1200,1201,3,425,212,0,1201,1202,3,409,204,0,1202,194, - 1,0,0,0,1203,1204,3,423,211,0,1204,1205,3,417,208,0,1205,1206,3, - 421,210,0,1206,1207,3,409,204,0,1207,196,1,0,0,0,1208,1209,3,423, - 211,0,1209,1210,3,417,208,0,1210,1211,3,425,212,0,1211,1212,3,417, - 208,0,1212,1213,3,439,219,0,1213,198,1,0,0,0,1214,1215,3,423,211, - 0,1215,1216,3,417,208,0,1216,1217,3,443,221,0,1217,1218,3,409,204, - 0,1218,200,1,0,0,0,1219,1220,3,423,211,0,1220,1221,3,429,214,0,1221, - 1222,3,405,202,0,1222,1223,3,401,200,0,1223,1224,3,423,211,0,1224, - 202,1,0,0,0,1225,1226,3,423,211,0,1226,1227,3,429,214,0,1227,1228, - 3,413,206,0,1228,1229,3,437,218,0,1229,204,1,0,0,0,1230,1231,3,425, - 212,0,1231,1232,3,401,200,0,1232,1233,3,439,219,0,1233,1234,3,409, - 204,0,1234,1235,3,435,217,0,1235,1236,3,417,208,0,1236,1237,3,401, - 200,0,1237,1238,3,423,211,0,1238,1239,3,417,208,0,1239,1240,3,451, - 225,0,1240,1241,3,409,204,0,1241,206,1,0,0,0,1242,1243,3,425,212, - 0,1243,1244,3,401,200,0,1244,1245,3,439,219,0,1245,1246,3,409,204, - 0,1246,1247,3,435,217,0,1247,1248,3,417,208,0,1248,1249,3,401,200, - 0,1249,1250,3,423,211,0,1250,1251,3,417,208,0,1251,1252,3,451,225, - 0,1252,1253,3,409,204,0,1253,1254,3,407,203,0,1254,208,1,0,0,0,1255, - 1256,3,425,212,0,1256,1257,3,401,200,0,1257,1258,3,447,223,0,1258, - 210,1,0,0,0,1259,1260,3,425,212,0,1260,1261,3,409,204,0,1261,1262, - 3,435,217,0,1262,1263,3,413,206,0,1263,1264,3,409,204,0,1264,1265, - 3,437,218,0,1265,212,1,0,0,0,1266,1267,3,425,212,0,1267,1268,3,417, - 208,0,1268,1269,3,427,213,0,1269,214,1,0,0,0,1270,1271,3,425,212, - 0,1271,1272,3,417,208,0,1272,1273,3,427,213,0,1273,1274,3,441,220, - 0,1274,1275,3,439,219,0,1275,1276,3,409,204,0,1276,216,1,0,0,0,1277, - 1278,3,425,212,0,1278,1279,3,429,214,0,1279,1280,3,407,203,0,1280, - 1281,3,417,208,0,1281,1282,3,411,205,0,1282,1283,3,449,224,0,1283, - 218,1,0,0,0,1284,1285,3,425,212,0,1285,1286,3,429,214,0,1286,1287, - 3,427,213,0,1287,1288,3,439,219,0,1288,1289,3,415,207,0,1289,220, - 1,0,0,0,1290,1291,3,425,212,0,1291,1292,3,429,214,0,1292,1293,3, - 443,221,0,1293,1294,3,409,204,0,1294,222,1,0,0,0,1295,1296,3,425, - 212,0,1296,1297,3,441,220,0,1297,1298,3,439,219,0,1298,1299,3,401, - 200,0,1299,1300,3,439,219,0,1300,1301,3,417,208,0,1301,1302,3,429, - 214,0,1302,1303,3,427,213,0,1303,224,1,0,0,0,1304,1305,3,427,213, - 0,1305,1306,3,401,200,0,1306,1307,3,427,213,0,1307,226,1,0,0,0,1308, - 1309,3,427,213,0,1309,1310,3,429,214,0,1310,228,1,0,0,0,1311,1312, - 3,427,213,0,1312,1313,3,429,214,0,1313,1314,3,439,219,0,1314,230, - 1,0,0,0,1315,1316,3,427,213,0,1316,1317,3,441,220,0,1317,1318,3, - 423,211,0,1318,1319,3,423,211,0,1319,232,1,0,0,0,1320,1321,3,427, - 213,0,1321,1322,3,441,220,0,1322,1323,3,423,211,0,1323,1324,3,423, - 211,0,1324,1325,3,437,218,0,1325,234,1,0,0,0,1326,1327,3,429,214, - 0,1327,1328,3,411,205,0,1328,1329,3,411,205,0,1329,1330,3,437,218, - 0,1330,1331,3,409,204,0,1331,1332,3,439,219,0,1332,236,1,0,0,0,1333, - 1334,3,429,214,0,1334,1335,3,427,213,0,1335,238,1,0,0,0,1336,1337, - 3,429,214,0,1337,1338,3,431,215,0,1338,1339,3,439,219,0,1339,1340, - 3,417,208,0,1340,1341,3,425,212,0,1341,1342,3,417,208,0,1342,1343, - 3,451,225,0,1343,1344,3,409,204,0,1344,240,1,0,0,0,1345,1346,3,429, - 214,0,1346,1347,3,435,217,0,1347,242,1,0,0,0,1348,1349,3,429,214, - 0,1349,1350,3,435,217,0,1350,1351,3,407,203,0,1351,1352,3,409,204, - 0,1352,1353,3,435,217,0,1353,244,1,0,0,0,1354,1355,3,429,214,0,1355, - 1356,3,441,220,0,1356,1357,3,439,219,0,1357,1358,3,409,204,0,1358, - 1359,3,435,217,0,1359,246,1,0,0,0,1360,1361,3,429,214,0,1361,1362, - 3,441,220,0,1362,1363,3,439,219,0,1363,1364,3,411,205,0,1364,1365, - 3,417,208,0,1365,1366,3,423,211,0,1366,1367,3,409,204,0,1367,248, - 1,0,0,0,1368,1369,3,429,214,0,1369,1370,3,443,221,0,1370,1371,3, - 409,204,0,1371,1372,3,435,217,0,1372,250,1,0,0,0,1373,1374,3,431, - 215,0,1374,1375,3,401,200,0,1375,1376,3,435,217,0,1376,1377,3,439, - 219,0,1377,1378,3,417,208,0,1378,1379,3,439,219,0,1379,1380,3,417, - 208,0,1380,1381,3,429,214,0,1381,1382,3,427,213,0,1382,252,1,0,0, - 0,1383,1384,3,431,215,0,1384,1385,3,429,214,0,1385,1386,3,431,215, - 0,1386,1387,3,441,220,0,1387,1388,3,423,211,0,1388,1389,3,401,200, - 0,1389,1390,3,439,219,0,1390,1391,3,409,204,0,1391,254,1,0,0,0,1392, - 1393,3,431,215,0,1393,1394,3,435,217,0,1394,1395,3,409,204,0,1395, - 1396,3,405,202,0,1396,1397,3,409,204,0,1397,1398,3,407,203,0,1398, - 1399,3,417,208,0,1399,1400,3,427,213,0,1400,1401,3,413,206,0,1401, - 256,1,0,0,0,1402,1403,3,431,215,0,1403,1404,3,435,217,0,1404,1405, - 3,409,204,0,1405,1406,3,445,222,0,1406,1407,3,415,207,0,1407,1408, - 3,409,204,0,1408,1409,3,435,217,0,1409,1410,3,409,204,0,1410,258, - 1,0,0,0,1411,1412,3,431,215,0,1412,1413,3,435,217,0,1413,1414,3, - 417,208,0,1414,1415,3,425,212,0,1415,1416,3,401,200,0,1416,1417, - 3,435,217,0,1417,1418,3,449,224,0,1418,260,1,0,0,0,1419,1420,3,431, - 215,0,1420,1421,3,435,217,0,1421,1422,3,429,214,0,1422,1423,3,419, - 209,0,1423,1424,3,409,204,0,1424,1425,3,405,202,0,1425,1426,3,439, - 219,0,1426,1427,3,417,208,0,1427,1428,3,429,214,0,1428,1429,3,427, - 213,0,1429,262,1,0,0,0,1430,1431,3,433,216,0,1431,1432,3,441,220, - 0,1432,1433,3,401,200,0,1433,1434,3,435,217,0,1434,1435,3,439,219, - 0,1435,1436,3,409,204,0,1436,1437,3,435,217,0,1437,264,1,0,0,0,1438, - 1439,3,435,217,0,1439,1440,3,401,200,0,1440,1441,3,427,213,0,1441, - 1442,3,413,206,0,1442,1443,3,409,204,0,1443,266,1,0,0,0,1444,1445, - 3,435,217,0,1445,1446,3,409,204,0,1446,1447,3,423,211,0,1447,1448, - 3,429,214,0,1448,1449,3,401,200,0,1449,1450,3,407,203,0,1450,268, - 1,0,0,0,1451,1452,3,435,217,0,1452,1453,3,409,204,0,1453,1454,3, - 425,212,0,1454,1455,3,429,214,0,1455,1456,3,443,221,0,1456,1457, - 3,409,204,0,1457,270,1,0,0,0,1458,1459,3,435,217,0,1459,1460,3,409, - 204,0,1460,1461,3,427,213,0,1461,1462,3,401,200,0,1462,1463,3,425, - 212,0,1463,1464,3,409,204,0,1464,272,1,0,0,0,1465,1466,3,435,217, - 0,1466,1467,3,409,204,0,1467,1468,3,431,215,0,1468,1469,3,423,211, - 0,1469,1470,3,401,200,0,1470,1471,3,405,202,0,1471,1472,3,409,204, - 0,1472,274,1,0,0,0,1473,1474,3,435,217,0,1474,1475,3,409,204,0,1475, - 1476,3,431,215,0,1476,1477,3,423,211,0,1477,1478,3,417,208,0,1478, - 1479,3,405,202,0,1479,1480,3,401,200,0,1480,276,1,0,0,0,1481,1482, - 3,435,217,0,1482,1483,3,409,204,0,1483,1484,3,431,215,0,1484,1485, - 3,423,211,0,1485,1486,3,417,208,0,1486,1487,3,405,202,0,1487,1488, - 3,401,200,0,1488,1489,3,439,219,0,1489,1490,3,409,204,0,1490,1491, - 3,407,203,0,1491,278,1,0,0,0,1492,1493,3,435,217,0,1493,1494,3,417, - 208,0,1494,1495,3,413,206,0,1495,1496,3,415,207,0,1496,1497,3,439, - 219,0,1497,280,1,0,0,0,1498,1499,3,435,217,0,1499,1500,3,429,214, - 0,1500,1501,3,423,211,0,1501,1502,3,423,211,0,1502,1503,3,441,220, - 0,1503,1504,3,431,215,0,1504,282,1,0,0,0,1505,1506,3,435,217,0,1506, - 1507,3,429,214,0,1507,1508,3,445,222,0,1508,284,1,0,0,0,1509,1510, - 3,435,217,0,1510,1511,3,429,214,0,1511,1512,3,445,222,0,1512,1513, - 3,437,218,0,1513,286,1,0,0,0,1514,1515,3,437,218,0,1515,1516,3,401, - 200,0,1516,1517,3,425,212,0,1517,1518,3,431,215,0,1518,1519,3,423, - 211,0,1519,1520,3,409,204,0,1520,288,1,0,0,0,1521,1522,3,437,218, - 0,1522,1523,3,409,204,0,1523,1524,3,405,202,0,1524,1525,3,429,214, - 0,1525,1526,3,427,213,0,1526,1527,3,407,203,0,1527,290,1,0,0,0,1528, - 1529,3,437,218,0,1529,1530,3,409,204,0,1530,1531,3,423,211,0,1531, - 1532,3,409,204,0,1532,1533,3,405,202,0,1533,1534,3,439,219,0,1534, - 292,1,0,0,0,1535,1536,3,437,218,0,1536,1537,3,409,204,0,1537,1538, - 3,425,212,0,1538,1539,3,417,208,0,1539,294,1,0,0,0,1540,1541,3,437, - 218,0,1541,1542,3,409,204,0,1542,1543,3,427,213,0,1543,1544,3,407, - 203,0,1544,1545,3,437,218,0,1545,296,1,0,0,0,1546,1547,3,437,218, - 0,1547,1548,3,409,204,0,1548,1549,3,439,219,0,1549,298,1,0,0,0,1550, - 1551,3,437,218,0,1551,1552,3,409,204,0,1552,1553,3,439,219,0,1553, - 1554,3,439,219,0,1554,1555,3,417,208,0,1555,1556,3,427,213,0,1556, - 1557,3,413,206,0,1557,1558,3,437,218,0,1558,300,1,0,0,0,1559,1560, - 3,437,218,0,1560,1561,3,415,207,0,1561,1562,3,429,214,0,1562,1563, - 3,445,222,0,1563,302,1,0,0,0,1564,1565,3,437,218,0,1565,1566,3,429, - 214,0,1566,1567,3,441,220,0,1567,1568,3,435,217,0,1568,1569,3,405, - 202,0,1569,1570,3,409,204,0,1570,304,1,0,0,0,1571,1572,3,437,218, - 0,1572,1573,3,439,219,0,1573,1574,3,401,200,0,1574,1575,3,435,217, - 0,1575,1576,3,439,219,0,1576,306,1,0,0,0,1577,1578,3,437,218,0,1578, - 1579,3,439,219,0,1579,1580,3,429,214,0,1580,1581,3,431,215,0,1581, - 308,1,0,0,0,1582,1583,3,437,218,0,1583,1584,3,441,220,0,1584,1585, - 3,403,201,0,1585,1586,3,437,218,0,1586,1587,3,439,219,0,1587,1588, - 3,435,217,0,1588,1589,3,417,208,0,1589,1590,3,427,213,0,1590,1591, - 3,413,206,0,1591,310,1,0,0,0,1592,1593,3,437,218,0,1593,1594,3,449, - 224,0,1594,1595,3,427,213,0,1595,1596,3,405,202,0,1596,312,1,0,0, - 0,1597,1598,3,437,218,0,1598,1599,3,449,224,0,1599,1600,3,427,213, - 0,1600,1601,3,439,219,0,1601,1602,3,401,200,0,1602,1603,3,447,223, - 0,1603,314,1,0,0,0,1604,1605,3,437,218,0,1605,1606,3,449,224,0,1606, - 1607,3,437,218,0,1607,1608,3,439,219,0,1608,1609,3,409,204,0,1609, - 1610,3,425,212,0,1610,316,1,0,0,0,1611,1612,3,439,219,0,1612,1613, - 3,401,200,0,1613,1614,3,403,201,0,1614,1615,3,423,211,0,1615,1616, - 3,409,204,0,1616,318,1,0,0,0,1617,1618,3,439,219,0,1618,1619,3,401, - 200,0,1619,1620,3,403,201,0,1620,1621,3,423,211,0,1621,1622,3,409, - 204,0,1622,1623,3,437,218,0,1623,320,1,0,0,0,1624,1625,3,439,219, - 0,1625,1626,3,409,204,0,1626,1627,3,425,212,0,1627,1628,3,431,215, - 0,1628,1629,3,429,214,0,1629,1630,3,435,217,0,1630,1631,3,401,200, - 0,1631,1632,3,435,217,0,1632,1633,3,449,224,0,1633,322,1,0,0,0,1634, - 1635,3,439,219,0,1635,1636,3,409,204,0,1636,1637,3,437,218,0,1637, - 1638,3,439,219,0,1638,324,1,0,0,0,1639,1640,3,439,219,0,1640,1641, - 3,415,207,0,1641,1642,3,409,204,0,1642,1643,3,427,213,0,1643,326, - 1,0,0,0,1644,1645,3,439,219,0,1645,1646,3,417,208,0,1646,1647,3, - 409,204,0,1647,1648,3,437,218,0,1648,328,1,0,0,0,1649,1650,3,439, - 219,0,1650,1651,3,417,208,0,1651,1652,3,425,212,0,1652,1653,3,409, - 204,0,1653,1654,3,429,214,0,1654,1655,3,441,220,0,1655,1656,3,439, - 219,0,1656,330,1,0,0,0,1657,1658,3,439,219,0,1658,1659,3,417,208, - 0,1659,1660,3,425,212,0,1660,1661,3,409,204,0,1661,1662,3,437,218, - 0,1662,1663,3,439,219,0,1663,1664,3,401,200,0,1664,1665,3,425,212, - 0,1665,1666,3,431,215,0,1666,332,1,0,0,0,1667,1668,3,439,219,0,1668, - 1669,3,429,214,0,1669,334,1,0,0,0,1670,1671,3,439,219,0,1671,1672, - 3,429,214,0,1672,1673,3,431,215,0,1673,336,1,0,0,0,1674,1675,3,439, - 219,0,1675,1676,3,429,214,0,1676,1677,3,439,219,0,1677,1678,3,401, - 200,0,1678,1679,3,423,211,0,1679,1680,3,437,218,0,1680,338,1,0,0, - 0,1681,1682,3,439,219,0,1682,1683,3,435,217,0,1683,1684,3,401,200, - 0,1684,1685,3,417,208,0,1685,1686,3,423,211,0,1686,1687,3,417,208, - 0,1687,1688,3,427,213,0,1688,1689,3,413,206,0,1689,340,1,0,0,0,1690, - 1691,3,439,219,0,1691,1692,3,435,217,0,1692,1693,3,417,208,0,1693, - 1694,3,425,212,0,1694,342,1,0,0,0,1695,1696,3,439,219,0,1696,1697, - 3,435,217,0,1697,1698,3,441,220,0,1698,1699,3,427,213,0,1699,1700, - 3,405,202,0,1700,1701,3,401,200,0,1701,1702,3,439,219,0,1702,1703, - 3,409,204,0,1703,344,1,0,0,0,1704,1705,3,439,219,0,1705,1706,3,439, - 219,0,1706,1707,3,423,211,0,1707,346,1,0,0,0,1708,1709,3,439,219, - 0,1709,1710,3,449,224,0,1710,1711,3,431,215,0,1711,1712,3,409,204, - 0,1712,348,1,0,0,0,1713,1714,3,441,220,0,1714,1715,3,427,213,0,1715, - 1716,3,403,201,0,1716,1717,3,429,214,0,1717,1718,3,441,220,0,1718, - 1719,3,427,213,0,1719,1720,3,407,203,0,1720,1721,3,409,204,0,1721, - 1722,3,407,203,0,1722,350,1,0,0,0,1723,1724,3,441,220,0,1724,1725, - 3,427,213,0,1725,1726,3,417,208,0,1726,1727,3,429,214,0,1727,1728, - 3,427,213,0,1728,352,1,0,0,0,1729,1730,3,441,220,0,1730,1731,3,431, - 215,0,1731,1732,3,407,203,0,1732,1733,3,401,200,0,1733,1734,3,439, - 219,0,1734,1735,3,409,204,0,1735,354,1,0,0,0,1736,1737,3,441,220, - 0,1737,1738,3,437,218,0,1738,1739,3,409,204,0,1739,356,1,0,0,0,1740, - 1741,3,441,220,0,1741,1742,3,437,218,0,1742,1743,3,417,208,0,1743, - 1744,3,427,213,0,1744,1745,3,413,206,0,1745,358,1,0,0,0,1746,1747, - 3,441,220,0,1747,1748,3,441,220,0,1748,1749,3,417,208,0,1749,1750, - 3,407,203,0,1750,360,1,0,0,0,1751,1752,3,443,221,0,1752,1753,3,401, - 200,0,1753,1754,3,423,211,0,1754,1755,3,441,220,0,1755,1756,3,409, - 204,0,1756,1757,3,437,218,0,1757,362,1,0,0,0,1758,1759,3,443,221, - 0,1759,1760,3,417,208,0,1760,1761,3,409,204,0,1761,1762,3,445,222, - 0,1762,364,1,0,0,0,1763,1764,3,443,221,0,1764,1765,3,429,214,0,1765, - 1766,3,423,211,0,1766,1767,3,441,220,0,1767,1768,3,425,212,0,1768, - 1769,3,409,204,0,1769,366,1,0,0,0,1770,1771,3,445,222,0,1771,1772, - 3,401,200,0,1772,1773,3,439,219,0,1773,1774,3,405,202,0,1774,1775, - 3,415,207,0,1775,368,1,0,0,0,1776,1777,3,445,222,0,1777,1778,3,409, - 204,0,1778,1779,3,409,204,0,1779,1780,3,421,210,0,1780,370,1,0,0, - 0,1781,1782,3,445,222,0,1782,1783,3,415,207,0,1783,1784,3,409,204, - 0,1784,1785,3,427,213,0,1785,372,1,0,0,0,1786,1787,3,445,222,0,1787, - 1788,3,415,207,0,1788,1789,3,409,204,0,1789,1790,3,435,217,0,1790, - 1791,3,409,204,0,1791,374,1,0,0,0,1792,1793,3,445,222,0,1793,1794, - 3,417,208,0,1794,1795,3,427,213,0,1795,1796,3,407,203,0,1796,1797, - 3,429,214,0,1797,1798,3,445,222,0,1798,376,1,0,0,0,1799,1800,3,445, - 222,0,1800,1801,3,417,208,0,1801,1802,3,439,219,0,1802,1803,3,415, - 207,0,1803,378,1,0,0,0,1804,1805,3,449,224,0,1805,1806,3,409,204, - 0,1806,1807,3,401,200,0,1807,1808,3,435,217,0,1808,1815,1,0,0,0, - 1809,1810,3,449,224,0,1810,1811,3,449,224,0,1811,1812,3,449,224, - 0,1812,1813,3,449,224,0,1813,1815,1,0,0,0,1814,1804,1,0,0,0,1814, - 1809,1,0,0,0,1815,380,1,0,0,0,1816,1817,5,102,0,0,1817,1818,5,97, - 0,0,1818,1819,5,108,0,0,1819,1820,5,115,0,0,1820,1821,5,101,0,0, - 1821,382,1,0,0,0,1822,1823,5,116,0,0,1823,1824,5,114,0,0,1824,1825, - 5,117,0,0,1825,1826,5,101,0,0,1826,384,1,0,0,0,1827,1828,3,467,233, - 0,1828,1829,3,403,201,0,1829,1858,1,0,0,0,1830,1831,3,467,233,0, - 1831,1832,3,411,205,0,1832,1858,1,0,0,0,1833,1834,3,467,233,0,1834, - 1835,3,435,217,0,1835,1858,1,0,0,0,1836,1837,3,467,233,0,1837,1838, - 3,427,213,0,1838,1858,1,0,0,0,1839,1840,3,467,233,0,1840,1841,3, - 439,219,0,1841,1858,1,0,0,0,1842,1843,3,467,233,0,1843,1844,5,48, - 0,0,1844,1858,1,0,0,0,1845,1846,3,467,233,0,1846,1847,3,401,200, - 0,1847,1858,1,0,0,0,1848,1849,3,467,233,0,1849,1850,3,443,221,0, - 1850,1858,1,0,0,0,1851,1852,3,467,233,0,1852,1853,3,467,233,0,1853, - 1858,1,0,0,0,1854,1855,3,467,233,0,1855,1856,3,513,256,0,1856,1858, - 1,0,0,0,1857,1827,1,0,0,0,1857,1830,1,0,0,0,1857,1833,1,0,0,0,1857, - 1836,1,0,0,0,1857,1839,1,0,0,0,1857,1842,1,0,0,0,1857,1845,1,0,0, - 0,1857,1848,1,0,0,0,1857,1851,1,0,0,0,1857,1854,1,0,0,0,1858,386, - 1,0,0,0,1859,1863,3,453,226,0,1860,1863,3,525,262,0,1861,1863,3, - 477,238,0,1862,1859,1,0,0,0,1862,1860,1,0,0,0,1862,1861,1,0,0,0, - 1863,1870,1,0,0,0,1864,1869,3,453,226,0,1865,1869,3,525,262,0,1866, - 1869,3,457,228,0,1867,1869,3,477,238,0,1868,1864,1,0,0,0,1868,1865, - 1,0,0,0,1868,1866,1,0,0,0,1868,1867,1,0,0,0,1869,1872,1,0,0,0,1870, - 1868,1,0,0,0,1870,1871,1,0,0,0,1871,1900,1,0,0,0,1872,1870,1,0,0, - 0,1873,1881,3,465,232,0,1874,1880,8,0,0,0,1875,1880,3,385,192,0, - 1876,1877,3,465,232,0,1877,1878,3,465,232,0,1878,1880,1,0,0,0,1879, - 1874,1,0,0,0,1879,1875,1,0,0,0,1879,1876,1,0,0,0,1880,1883,1,0,0, - 0,1881,1879,1,0,0,0,1881,1882,1,0,0,0,1882,1884,1,0,0,0,1883,1881, - 1,0,0,0,1884,1885,3,465,232,0,1885,1900,1,0,0,0,1886,1894,3,511, - 255,0,1887,1893,8,1,0,0,1888,1893,3,385,192,0,1889,1890,3,511,255, - 0,1890,1891,3,511,255,0,1891,1893,1,0,0,0,1892,1887,1,0,0,0,1892, - 1888,1,0,0,0,1892,1889,1,0,0,0,1893,1896,1,0,0,0,1894,1892,1,0,0, - 0,1894,1895,1,0,0,0,1895,1897,1,0,0,0,1896,1894,1,0,0,0,1897,1898, - 3,511,255,0,1898,1900,1,0,0,0,1899,1862,1,0,0,0,1899,1873,1,0,0, - 0,1899,1886,1,0,0,0,1900,388,1,0,0,0,1901,1902,3,395,197,0,1902, - 1906,3,479,239,0,1903,1905,3,459,229,0,1904,1903,1,0,0,0,1905,1908, - 1,0,0,0,1906,1904,1,0,0,0,1906,1907,1,0,0,0,1907,1911,1,0,0,0,1908, - 1906,1,0,0,0,1909,1912,3,431,215,0,1910,1912,3,409,204,0,1911,1909, - 1,0,0,0,1911,1910,1,0,0,0,1912,1915,1,0,0,0,1913,1916,3,507,253, - 0,1914,1916,3,475,237,0,1915,1913,1,0,0,0,1915,1914,1,0,0,0,1915, - 1916,1,0,0,0,1916,1918,1,0,0,0,1917,1919,3,457,228,0,1918,1917,1, - 0,0,0,1919,1920,1,0,0,0,1920,1918,1,0,0,0,1920,1921,1,0,0,0,1921, - 1978,1,0,0,0,1922,1925,3,395,197,0,1923,1926,3,431,215,0,1924,1926, - 3,409,204,0,1925,1923,1,0,0,0,1925,1924,1,0,0,0,1926,1929,1,0,0, - 0,1927,1930,3,507,253,0,1928,1930,3,475,237,0,1929,1927,1,0,0,0, - 1929,1928,1,0,0,0,1929,1930,1,0,0,0,1930,1932,1,0,0,0,1931,1933, - 3,457,228,0,1932,1931,1,0,0,0,1933,1934,1,0,0,0,1934,1932,1,0,0, - 0,1934,1935,1,0,0,0,1935,1978,1,0,0,0,1936,1937,3,393,196,0,1937, - 1941,3,479,239,0,1938,1940,3,457,228,0,1939,1938,1,0,0,0,1940,1943, - 1,0,0,0,1941,1939,1,0,0,0,1941,1942,1,0,0,0,1942,1944,1,0,0,0,1943, - 1941,1,0,0,0,1944,1947,3,409,204,0,1945,1948,3,507,253,0,1946,1948, - 3,475,237,0,1947,1945,1,0,0,0,1947,1946,1,0,0,0,1947,1948,1,0,0, - 0,1948,1950,1,0,0,0,1949,1951,3,457,228,0,1950,1949,1,0,0,0,1951, - 1952,1,0,0,0,1952,1950,1,0,0,0,1952,1953,1,0,0,0,1953,1978,1,0,0, - 0,1954,1955,3,479,239,0,1955,1956,3,393,196,0,1956,1959,3,409,204, - 0,1957,1960,3,507,253,0,1958,1960,3,475,237,0,1959,1957,1,0,0,0, - 1959,1958,1,0,0,0,1959,1960,1,0,0,0,1960,1962,1,0,0,0,1961,1963, - 3,457,228,0,1962,1961,1,0,0,0,1963,1964,1,0,0,0,1964,1962,1,0,0, - 0,1964,1965,1,0,0,0,1965,1978,1,0,0,0,1966,1967,3,393,196,0,1967, - 1970,3,409,204,0,1968,1971,3,507,253,0,1969,1971,3,475,237,0,1970, - 1968,1,0,0,0,1970,1969,1,0,0,0,1970,1971,1,0,0,0,1971,1973,1,0,0, - 0,1972,1974,3,457,228,0,1973,1972,1,0,0,0,1974,1975,1,0,0,0,1975, - 1973,1,0,0,0,1975,1976,1,0,0,0,1976,1978,1,0,0,0,1977,1901,1,0,0, - 0,1977,1922,1,0,0,0,1977,1936,1,0,0,0,1977,1954,1,0,0,0,1977,1966, - 1,0,0,0,1978,390,1,0,0,0,1979,1981,5,48,0,0,1980,1982,3,455,227, - 0,1981,1980,1,0,0,0,1982,1983,1,0,0,0,1983,1981,1,0,0,0,1983,1984, - 1,0,0,0,1984,392,1,0,0,0,1985,1987,3,457,228,0,1986,1985,1,0,0,0, - 1987,1988,1,0,0,0,1988,1986,1,0,0,0,1988,1989,1,0,0,0,1989,394,1, - 0,0,0,1990,1991,5,48,0,0,1991,1993,3,447,223,0,1992,1994,3,459,229, - 0,1993,1992,1,0,0,0,1994,1995,1,0,0,0,1995,1993,1,0,0,0,1995,1996, - 1,0,0,0,1996,396,1,0,0,0,1997,2005,3,513,256,0,1998,2004,8,2,0,0, - 1999,2004,3,385,192,0,2000,2001,3,513,256,0,2001,2002,3,513,256, - 0,2002,2004,1,0,0,0,2003,1998,1,0,0,0,2003,1999,1,0,0,0,2003,2000, - 1,0,0,0,2004,2007,1,0,0,0,2005,2003,1,0,0,0,2005,2006,1,0,0,0,2006, - 2008,1,0,0,0,2007,2005,1,0,0,0,2008,2009,3,513,256,0,2009,398,1, - 0,0,0,2010,2018,3,491,245,0,2011,2017,8,3,0,0,2012,2017,3,385,192, - 0,2013,2014,3,491,245,0,2014,2015,3,491,245,0,2015,2017,1,0,0,0, - 2016,2011,1,0,0,0,2016,2012,1,0,0,0,2016,2013,1,0,0,0,2017,2020, - 1,0,0,0,2018,2016,1,0,0,0,2018,2019,1,0,0,0,2019,2021,1,0,0,0,2020, - 2018,1,0,0,0,2021,2022,3,515,257,0,2022,400,1,0,0,0,2023,2024,7, - 4,0,0,2024,402,1,0,0,0,2025,2026,7,5,0,0,2026,404,1,0,0,0,2027,2028, - 7,6,0,0,2028,406,1,0,0,0,2029,2030,7,7,0,0,2030,408,1,0,0,0,2031, - 2032,7,8,0,0,2032,410,1,0,0,0,2033,2034,7,9,0,0,2034,412,1,0,0,0, - 2035,2036,7,10,0,0,2036,414,1,0,0,0,2037,2038,7,11,0,0,2038,416, - 1,0,0,0,2039,2040,7,12,0,0,2040,418,1,0,0,0,2041,2042,7,13,0,0,2042, - 420,1,0,0,0,2043,2044,7,14,0,0,2044,422,1,0,0,0,2045,2046,7,15,0, - 0,2046,424,1,0,0,0,2047,2048,7,16,0,0,2048,426,1,0,0,0,2049,2050, - 7,17,0,0,2050,428,1,0,0,0,2051,2052,7,18,0,0,2052,430,1,0,0,0,2053, - 2054,7,19,0,0,2054,432,1,0,0,0,2055,2056,7,20,0,0,2056,434,1,0,0, - 0,2057,2058,7,21,0,0,2058,436,1,0,0,0,2059,2060,7,22,0,0,2060,438, - 1,0,0,0,2061,2062,7,23,0,0,2062,440,1,0,0,0,2063,2064,7,24,0,0,2064, - 442,1,0,0,0,2065,2066,7,25,0,0,2066,444,1,0,0,0,2067,2068,7,26,0, - 0,2068,446,1,0,0,0,2069,2070,7,27,0,0,2070,448,1,0,0,0,2071,2072, - 7,28,0,0,2072,450,1,0,0,0,2073,2074,7,29,0,0,2074,452,1,0,0,0,2075, - 2076,7,30,0,0,2076,454,1,0,0,0,2077,2078,7,31,0,0,2078,456,1,0,0, - 0,2079,2080,7,32,0,0,2080,458,1,0,0,0,2081,2082,7,33,0,0,2082,460, - 1,0,0,0,2083,2084,5,45,0,0,2084,2085,5,62,0,0,2085,462,1,0,0,0,2086, - 2087,5,42,0,0,2087,464,1,0,0,0,2088,2089,5,96,0,0,2089,466,1,0,0, - 0,2090,2091,5,92,0,0,2091,468,1,0,0,0,2092,2093,5,58,0,0,2093,470, - 1,0,0,0,2094,2095,5,44,0,0,2095,472,1,0,0,0,2096,2097,5,124,0,0, - 2097,2098,5,124,0,0,2098,474,1,0,0,0,2099,2100,5,45,0,0,2100,476, - 1,0,0,0,2101,2102,5,36,0,0,2102,478,1,0,0,0,2103,2104,5,46,0,0,2104, - 480,1,0,0,0,2105,2106,5,61,0,0,2106,2107,5,61,0,0,2107,482,1,0,0, - 0,2108,2109,5,61,0,0,2109,484,1,0,0,0,2110,2111,5,62,0,0,2111,2112, - 5,61,0,0,2112,486,1,0,0,0,2113,2114,5,62,0,0,2114,488,1,0,0,0,2115, - 2116,5,35,0,0,2116,490,1,0,0,0,2117,2118,5,123,0,0,2118,492,1,0, - 0,0,2119,2120,5,91,0,0,2120,494,1,0,0,0,2121,2122,5,60,0,0,2122, - 2123,5,61,0,0,2123,496,1,0,0,0,2124,2125,5,40,0,0,2125,498,1,0,0, - 0,2126,2127,5,60,0,0,2127,500,1,0,0,0,2128,2129,5,33,0,0,2129,2133, - 5,61,0,0,2130,2131,5,60,0,0,2131,2133,5,62,0,0,2132,2128,1,0,0,0, - 2132,2130,1,0,0,0,2133,502,1,0,0,0,2134,2135,5,63,0,0,2135,2136, - 5,63,0,0,2136,504,1,0,0,0,2137,2138,5,37,0,0,2138,506,1,0,0,0,2139, - 2140,5,43,0,0,2140,508,1,0,0,0,2141,2142,5,63,0,0,2142,510,1,0,0, - 0,2143,2144,5,34,0,0,2144,512,1,0,0,0,2145,2146,5,39,0,0,2146,514, - 1,0,0,0,2147,2148,5,125,0,0,2148,516,1,0,0,0,2149,2150,5,93,0,0, - 2150,518,1,0,0,0,2151,2152,5,41,0,0,2152,520,1,0,0,0,2153,2154,5, - 59,0,0,2154,522,1,0,0,0,2155,2156,5,47,0,0,2156,524,1,0,0,0,2157, - 2158,5,95,0,0,2158,526,1,0,0,0,2159,2160,5,47,0,0,2160,2161,5,42, - 0,0,2161,2165,1,0,0,0,2162,2164,9,0,0,0,2163,2162,1,0,0,0,2164,2167, - 1,0,0,0,2165,2166,1,0,0,0,2165,2163,1,0,0,0,2166,2168,1,0,0,0,2167, - 2165,1,0,0,0,2168,2169,5,42,0,0,2169,2170,5,47,0,0,2170,2171,1,0, - 0,0,2171,2172,6,263,0,0,2172,528,1,0,0,0,2173,2174,5,45,0,0,2174, - 2175,5,45,0,0,2175,2179,1,0,0,0,2176,2178,8,34,0,0,2177,2176,1,0, - 0,0,2178,2181,1,0,0,0,2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,2183, - 1,0,0,0,2181,2179,1,0,0,0,2182,2184,7,35,0,0,2183,2182,1,0,0,0,2184, - 2185,1,0,0,0,2185,2186,6,264,0,0,2186,530,1,0,0,0,2187,2188,7,36, - 0,0,2188,2189,1,0,0,0,2189,2190,6,265,1,0,2190,532,1,0,0,0,39,0, - 595,1100,1814,1857,1862,1868,1870,1879,1881,1892,1894,1899,1906, - 1911,1915,1920,1925,1929,1934,1941,1947,1952,1959,1964,1970,1975, - 1977,1983,1988,1995,2003,2005,2016,2018,2132,2165,2179,2183,2,6, - 0,0,0,1,0 + 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, + 3,192,1870,8,192,1,193,1,193,1,193,3,193,1875,8,193,1,193,1,193, + 1,193,1,193,5,193,1881,8,193,10,193,12,193,1884,9,193,1,193,1,193, + 1,193,1,193,1,193,1,193,5,193,1892,8,193,10,193,12,193,1895,9,193, + 1,193,1,193,1,193,1,193,1,193,1,193,1,193,1,193,5,193,1905,8,193, + 10,193,12,193,1908,9,193,1,193,1,193,3,193,1912,8,193,1,194,1,194, + 1,194,5,194,1917,8,194,10,194,12,194,1920,9,194,1,194,1,194,3,194, + 1924,8,194,1,194,1,194,3,194,1928,8,194,1,194,4,194,1931,8,194,11, + 194,12,194,1932,1,194,1,194,1,194,3,194,1938,8,194,1,194,1,194,3, + 194,1942,8,194,1,194,4,194,1945,8,194,11,194,12,194,1946,1,194,1, + 194,1,194,5,194,1952,8,194,10,194,12,194,1955,9,194,1,194,1,194, + 1,194,3,194,1960,8,194,1,194,4,194,1963,8,194,11,194,12,194,1964, + 1,194,1,194,1,194,1,194,1,194,3,194,1972,8,194,1,194,4,194,1975, + 8,194,11,194,12,194,1976,1,194,1,194,1,194,1,194,3,194,1983,8,194, + 1,194,4,194,1986,8,194,11,194,12,194,1987,3,194,1990,8,194,1,195, + 1,195,4,195,1994,8,195,11,195,12,195,1995,1,196,4,196,1999,8,196, + 11,196,12,196,2000,1,197,1,197,1,197,4,197,2006,8,197,11,197,12, + 197,2007,1,198,1,198,1,198,1,198,1,198,1,198,5,198,2016,8,198,10, + 198,12,198,2019,9,198,1,198,1,198,1,199,1,199,1,199,1,199,1,199, + 1,199,5,199,2029,8,199,10,199,12,199,2032,9,199,1,199,1,199,1,200, + 1,200,1,201,1,201,1,202,1,202,1,203,1,203,1,204,1,204,1,205,1,205, + 1,206,1,206,1,207,1,207,1,208,1,208,1,209,1,209,1,210,1,210,1,211, + 1,211,1,212,1,212,1,213,1,213,1,214,1,214,1,215,1,215,1,216,1,216, + 1,217,1,217,1,218,1,218,1,219,1,219,1,220,1,220,1,221,1,221,1,222, + 1,222,1,223,1,223,1,224,1,224,1,225,1,225,1,226,1,226,1,227,1,227, + 1,228,1,228,1,229,1,229,1,230,1,230,1,230,1,231,1,231,1,232,1,232, + 1,233,1,233,1,234,1,234,1,235,1,235,1,236,1,236,1,236,1,237,1,237, + 1,238,1,238,1,239,1,239,1,240,1,240,1,240,1,241,1,241,1,242,1,242, + 1,242,1,243,1,243,1,244,1,244,1,245,1,245,1,245,1,246,1,246,1,246, + 1,246,1,247,1,247,1,248,1,248,1,249,1,249,1,250,1,250,1,250,1,251, + 1,251,1,252,1,252,1,252,1,252,3,252,2152,8,252,1,253,1,253,1,253, + 1,253,1,254,1,254,1,254,1,255,1,255,1,255,1,256,1,256,1,257,1,257, + 1,258,1,258,1,259,1,259,1,260,1,260,1,261,1,261,1,262,1,262,1,262, + 1,263,1,263,1,264,1,264,1,265,1,265,1,266,1,266,1,267,1,267,1,268, + 1,268,1,269,1,269,1,269,1,269,5,269,2195,8,269,10,269,12,269,2198, + 9,269,1,269,1,269,1,269,1,269,1,269,1,270,1,270,1,270,1,270,5,270, + 2209,8,270,10,270,12,270,2212,9,270,1,270,3,270,2215,8,270,1,270, + 1,270,1,271,1,271,1,271,1,271,1,2196,0,272,1,1,3,2,5,3,7,4,9,5,11, + 6,13,7,15,8,17,9,19,10,21,11,23,12,25,13,27,14,29,15,31,16,33,17, + 35,18,37,19,39,20,41,21,43,22,45,23,47,24,49,25,51,26,53,27,55,28, + 57,29,59,30,61,31,63,32,65,33,67,34,69,35,71,36,73,37,75,38,77,39, + 79,40,81,41,83,42,85,43,87,44,89,45,91,46,93,47,95,48,97,49,99,50, + 101,51,103,52,105,53,107,54,109,55,111,56,113,57,115,58,117,59,119, + 60,121,61,123,62,125,63,127,64,129,65,131,66,133,67,135,68,137,69, + 139,70,141,71,143,72,145,73,147,74,149,75,151,76,153,77,155,78,157, + 79,159,80,161,81,163,82,165,83,167,84,169,85,171,86,173,87,175,88, + 177,89,179,90,181,91,183,92,185,93,187,94,189,95,191,96,193,97,195, + 98,197,99,199,100,201,101,203,102,205,103,207,104,209,105,211,106, + 213,107,215,108,217,109,219,110,221,111,223,112,225,113,227,114, + 229,115,231,116,233,117,235,118,237,119,239,120,241,121,243,122, + 245,123,247,124,249,125,251,126,253,127,255,128,257,129,259,130, + 261,131,263,132,265,133,267,134,269,135,271,136,273,137,275,138, + 277,139,279,140,281,141,283,142,285,143,287,144,289,145,291,146, + 293,147,295,148,297,149,299,150,301,151,303,152,305,153,307,154, + 309,155,311,156,313,157,315,158,317,159,319,160,321,161,323,162, + 325,163,327,164,329,165,331,166,333,167,335,168,337,169,339,170, + 341,171,343,172,345,173,347,174,349,175,351,176,353,177,355,178, + 357,179,359,180,361,181,363,182,365,183,367,184,369,185,371,186, + 373,187,375,188,377,189,379,190,381,191,383,192,385,193,387,194, + 389,195,391,196,393,197,395,198,397,199,399,200,401,0,403,0,405, + 0,407,0,409,0,411,0,413,0,415,0,417,0,419,0,421,0,423,0,425,0,427, + 0,429,0,431,0,433,0,435,0,437,0,439,0,441,0,443,0,445,0,447,0,449, + 0,451,0,453,0,455,0,457,0,459,0,461,201,463,202,465,203,467,204, + 469,205,471,206,473,207,475,208,477,209,479,210,481,211,483,212, + 485,213,487,214,489,215,491,216,493,217,495,218,497,219,499,220, + 501,221,503,222,505,223,507,224,509,225,511,226,513,227,515,228, + 517,229,519,230,521,231,523,232,525,233,527,234,529,235,531,236, + 533,237,535,238,537,239,539,240,541,241,543,242,1,0,37,2,0,92,92, + 96,96,2,0,34,34,92,92,2,0,39,39,92,92,2,0,92,92,125,125,2,0,65,65, + 97,97,2,0,66,66,98,98,2,0,67,67,99,99,2,0,68,68,100,100,2,0,69,69, + 101,101,2,0,70,70,102,102,2,0,71,71,103,103,2,0,72,72,104,104,2, + 0,73,73,105,105,2,0,74,74,106,106,2,0,75,75,107,107,2,0,76,76,108, + 108,2,0,77,77,109,109,2,0,78,78,110,110,2,0,79,79,111,111,2,0,80, + 80,112,112,2,0,81,81,113,113,2,0,82,82,114,114,2,0,83,83,115,115, + 2,0,84,84,116,116,2,0,85,85,117,117,2,0,86,86,118,118,2,0,87,87, + 119,119,2,0,88,88,120,120,2,0,89,89,121,121,2,0,90,90,122,122,2, + 0,65,90,97,122,1,0,48,55,1,0,48,57,3,0,48,57,65,70,97,102,2,0,10, + 10,13,13,2,1,10,10,13,13,2,0,9,13,32,32,2252,0,1,1,0,0,0,0,3,1,0, + 0,0,0,5,1,0,0,0,0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0, + 0,0,15,1,0,0,0,0,17,1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0, + 0,0,25,1,0,0,0,0,27,1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0, + 0,0,35,1,0,0,0,0,37,1,0,0,0,0,39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0, + 0,0,45,1,0,0,0,0,47,1,0,0,0,0,49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0, + 0,0,55,1,0,0,0,0,57,1,0,0,0,0,59,1,0,0,0,0,61,1,0,0,0,0,63,1,0,0, + 0,0,65,1,0,0,0,0,67,1,0,0,0,0,69,1,0,0,0,0,71,1,0,0,0,0,73,1,0,0, + 0,0,75,1,0,0,0,0,77,1,0,0,0,0,79,1,0,0,0,0,81,1,0,0,0,0,83,1,0,0, + 0,0,85,1,0,0,0,0,87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93,1,0,0, + 0,0,95,1,0,0,0,0,97,1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103,1,0, + 0,0,0,105,1,0,0,0,0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0,0,113, + 1,0,0,0,0,115,1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0, + 0,123,1,0,0,0,0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0,131,1, + 0,0,0,0,133,1,0,0,0,0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0, + 141,1,0,0,0,0,143,1,0,0,0,0,145,1,0,0,0,0,147,1,0,0,0,0,149,1,0, + 0,0,0,151,1,0,0,0,0,153,1,0,0,0,0,155,1,0,0,0,0,157,1,0,0,0,0,159, + 1,0,0,0,0,161,1,0,0,0,0,163,1,0,0,0,0,165,1,0,0,0,0,167,1,0,0,0, + 0,169,1,0,0,0,0,171,1,0,0,0,0,173,1,0,0,0,0,175,1,0,0,0,0,177,1, + 0,0,0,0,179,1,0,0,0,0,181,1,0,0,0,0,183,1,0,0,0,0,185,1,0,0,0,0, + 187,1,0,0,0,0,189,1,0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,0,195,1,0, + 0,0,0,197,1,0,0,0,0,199,1,0,0,0,0,201,1,0,0,0,0,203,1,0,0,0,0,205, + 1,0,0,0,0,207,1,0,0,0,0,209,1,0,0,0,0,211,1,0,0,0,0,213,1,0,0,0, + 0,215,1,0,0,0,0,217,1,0,0,0,0,219,1,0,0,0,0,221,1,0,0,0,0,223,1, + 0,0,0,0,225,1,0,0,0,0,227,1,0,0,0,0,229,1,0,0,0,0,231,1,0,0,0,0, + 233,1,0,0,0,0,235,1,0,0,0,0,237,1,0,0,0,0,239,1,0,0,0,0,241,1,0, + 0,0,0,243,1,0,0,0,0,245,1,0,0,0,0,247,1,0,0,0,0,249,1,0,0,0,0,251, + 1,0,0,0,0,253,1,0,0,0,0,255,1,0,0,0,0,257,1,0,0,0,0,259,1,0,0,0, + 0,261,1,0,0,0,0,263,1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0,0,269,1, + 0,0,0,0,271,1,0,0,0,0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0, + 279,1,0,0,0,0,281,1,0,0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287,1,0, + 0,0,0,289,1,0,0,0,0,291,1,0,0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297, + 1,0,0,0,0,299,1,0,0,0,0,301,1,0,0,0,0,303,1,0,0,0,0,305,1,0,0,0, + 0,307,1,0,0,0,0,309,1,0,0,0,0,311,1,0,0,0,0,313,1,0,0,0,0,315,1, + 0,0,0,0,317,1,0,0,0,0,319,1,0,0,0,0,321,1,0,0,0,0,323,1,0,0,0,0, + 325,1,0,0,0,0,327,1,0,0,0,0,329,1,0,0,0,0,331,1,0,0,0,0,333,1,0, + 0,0,0,335,1,0,0,0,0,337,1,0,0,0,0,339,1,0,0,0,0,341,1,0,0,0,0,343, + 1,0,0,0,0,345,1,0,0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351,1,0,0,0, + 0,353,1,0,0,0,0,355,1,0,0,0,0,357,1,0,0,0,0,359,1,0,0,0,0,361,1, + 0,0,0,0,363,1,0,0,0,0,365,1,0,0,0,0,367,1,0,0,0,0,369,1,0,0,0,0, + 371,1,0,0,0,0,373,1,0,0,0,0,375,1,0,0,0,0,377,1,0,0,0,0,379,1,0, + 0,0,0,381,1,0,0,0,0,383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,0,0,0,389, + 1,0,0,0,0,391,1,0,0,0,0,393,1,0,0,0,0,395,1,0,0,0,0,397,1,0,0,0, + 0,399,1,0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0,465,1,0,0,0,0,467,1, + 0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473,1,0,0,0,0,475,1,0,0,0,0, + 477,1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483,1,0,0,0,0,485,1,0, + 0,0,0,487,1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0,0,493,1,0,0,0,0,495, + 1,0,0,0,0,497,1,0,0,0,0,499,1,0,0,0,0,501,1,0,0,0,0,503,1,0,0,0, + 0,505,1,0,0,0,0,507,1,0,0,0,0,509,1,0,0,0,0,511,1,0,0,0,0,513,1, + 0,0,0,0,515,1,0,0,0,0,517,1,0,0,0,0,519,1,0,0,0,0,521,1,0,0,0,0, + 523,1,0,0,0,0,525,1,0,0,0,0,527,1,0,0,0,0,529,1,0,0,0,0,531,1,0, + 0,0,0,533,1,0,0,0,0,535,1,0,0,0,0,537,1,0,0,0,0,539,1,0,0,0,0,541, + 1,0,0,0,0,543,1,0,0,0,1,545,1,0,0,0,3,549,1,0,0,0,5,555,1,0,0,0, + 7,561,1,0,0,0,9,565,1,0,0,0,11,571,1,0,0,0,13,575,1,0,0,0,15,580, + 1,0,0,0,17,584,1,0,0,0,19,590,1,0,0,0,21,607,1,0,0,0,23,609,1,0, + 0,0,25,614,1,0,0,0,27,618,1,0,0,0,29,624,1,0,0,0,31,631,1,0,0,0, + 33,639,1,0,0,0,35,644,1,0,0,0,37,647,1,0,0,0,39,652,1,0,0,0,41,657, + 1,0,0,0,43,663,1,0,0,0,45,669,1,0,0,0,47,677,1,0,0,0,49,683,1,0, + 0,0,51,690,1,0,0,0,53,698,1,0,0,0,55,705,1,0,0,0,57,713,1,0,0,0, + 59,724,1,0,0,0,61,731,1,0,0,0,63,737,1,0,0,0,65,742,1,0,0,0,67,750, + 1,0,0,0,69,759,1,0,0,0,71,769,1,0,0,0,73,774,1,0,0,0,75,778,1,0, + 0,0,77,790,1,0,0,0,79,798,1,0,0,0,81,804,1,0,0,0,83,811,1,0,0,0, + 85,816,1,0,0,0,87,827,1,0,0,0,89,836,1,0,0,0,91,843,1,0,0,0,93,856, + 1,0,0,0,95,867,1,0,0,0,97,872,1,0,0,0,99,881,1,0,0,0,101,893,1,0, + 0,0,103,898,1,0,0,0,105,903,1,0,0,0,107,907,1,0,0,0,109,914,1,0, + 0,0,111,921,1,0,0,0,113,928,1,0,0,0,115,936,1,0,0,0,117,947,1,0, + 0,0,119,955,1,0,0,0,121,963,1,0,0,0,123,969,1,0,0,0,125,975,1,0, + 0,0,127,981,1,0,0,0,129,991,1,0,0,0,131,995,1,0,0,0,133,1002,1,0, + 0,0,135,1009,1,0,0,0,137,1014,1,0,0,0,139,1019,1,0,0,0,141,1028, + 1,0,0,0,143,1035,1,0,0,0,145,1047,1,0,0,0,147,1053,1,0,0,0,149,1060, + 1,0,0,0,151,1073,1,0,0,0,153,1078,1,0,0,0,155,1081,1,0,0,0,157,1084, + 1,0,0,0,159,1090,1,0,0,0,161,1093,1,0,0,0,163,1112,1,0,0,0,165,1114, + 1,0,0,0,167,1124,1,0,0,0,169,1130,1,0,0,0,171,1137,1,0,0,0,173,1146, + 1,0,0,0,175,1151,1,0,0,0,177,1154,1,0,0,0,179,1167,1,0,0,0,181,1172, + 1,0,0,0,183,1176,1,0,0,0,185,1181,1,0,0,0,187,1186,1,0,0,0,189,1193, + 1,0,0,0,191,1201,1,0,0,0,193,1206,1,0,0,0,195,1215,1,0,0,0,197,1220, + 1,0,0,0,199,1226,1,0,0,0,201,1231,1,0,0,0,203,1237,1,0,0,0,205,1242, + 1,0,0,0,207,1254,1,0,0,0,209,1267,1,0,0,0,211,1271,1,0,0,0,213,1278, + 1,0,0,0,215,1282,1,0,0,0,217,1289,1,0,0,0,219,1296,1,0,0,0,221,1302, + 1,0,0,0,223,1307,1,0,0,0,225,1316,1,0,0,0,227,1320,1,0,0,0,229,1323, + 1,0,0,0,231,1327,1,0,0,0,233,1332,1,0,0,0,235,1338,1,0,0,0,237,1345, + 1,0,0,0,239,1348,1,0,0,0,241,1357,1,0,0,0,243,1360,1,0,0,0,245,1366, + 1,0,0,0,247,1372,1,0,0,0,249,1380,1,0,0,0,251,1385,1,0,0,0,253,1395, + 1,0,0,0,255,1404,1,0,0,0,257,1414,1,0,0,0,259,1423,1,0,0,0,261,1431, + 1,0,0,0,263,1442,1,0,0,0,265,1450,1,0,0,0,267,1456,1,0,0,0,269,1463, + 1,0,0,0,271,1470,1,0,0,0,273,1477,1,0,0,0,275,1485,1,0,0,0,277,1493, + 1,0,0,0,279,1504,1,0,0,0,281,1510,1,0,0,0,283,1517,1,0,0,0,285,1521, + 1,0,0,0,287,1526,1,0,0,0,289,1533,1,0,0,0,291,1540,1,0,0,0,293,1547, + 1,0,0,0,295,1552,1,0,0,0,297,1558,1,0,0,0,299,1562,1,0,0,0,301,1571, + 1,0,0,0,303,1576,1,0,0,0,305,1583,1,0,0,0,307,1589,1,0,0,0,309,1594, + 1,0,0,0,311,1604,1,0,0,0,313,1609,1,0,0,0,315,1616,1,0,0,0,317,1623, + 1,0,0,0,319,1629,1,0,0,0,321,1636,1,0,0,0,323,1646,1,0,0,0,325,1651, + 1,0,0,0,327,1656,1,0,0,0,329,1661,1,0,0,0,331,1669,1,0,0,0,333,1679, + 1,0,0,0,335,1682,1,0,0,0,337,1686,1,0,0,0,339,1693,1,0,0,0,341,1702, + 1,0,0,0,343,1707,1,0,0,0,345,1716,1,0,0,0,347,1720,1,0,0,0,349,1725, + 1,0,0,0,351,1735,1,0,0,0,353,1741,1,0,0,0,355,1748,1,0,0,0,357,1752, + 1,0,0,0,359,1758,1,0,0,0,361,1763,1,0,0,0,363,1770,1,0,0,0,365,1775, + 1,0,0,0,367,1782,1,0,0,0,369,1788,1,0,0,0,371,1793,1,0,0,0,373,1798, + 1,0,0,0,375,1804,1,0,0,0,377,1811,1,0,0,0,379,1826,1,0,0,0,381,1828, + 1,0,0,0,383,1834,1,0,0,0,385,1869,1,0,0,0,387,1911,1,0,0,0,389,1989, + 1,0,0,0,391,1991,1,0,0,0,393,1998,1,0,0,0,395,2002,1,0,0,0,397,2009, + 1,0,0,0,399,2022,1,0,0,0,401,2035,1,0,0,0,403,2037,1,0,0,0,405,2039, + 1,0,0,0,407,2041,1,0,0,0,409,2043,1,0,0,0,411,2045,1,0,0,0,413,2047, + 1,0,0,0,415,2049,1,0,0,0,417,2051,1,0,0,0,419,2053,1,0,0,0,421,2055, + 1,0,0,0,423,2057,1,0,0,0,425,2059,1,0,0,0,427,2061,1,0,0,0,429,2063, + 1,0,0,0,431,2065,1,0,0,0,433,2067,1,0,0,0,435,2069,1,0,0,0,437,2071, + 1,0,0,0,439,2073,1,0,0,0,441,2075,1,0,0,0,443,2077,1,0,0,0,445,2079, + 1,0,0,0,447,2081,1,0,0,0,449,2083,1,0,0,0,451,2085,1,0,0,0,453,2087, + 1,0,0,0,455,2089,1,0,0,0,457,2091,1,0,0,0,459,2093,1,0,0,0,461,2095, + 1,0,0,0,463,2098,1,0,0,0,465,2100,1,0,0,0,467,2102,1,0,0,0,469,2104, + 1,0,0,0,471,2106,1,0,0,0,473,2108,1,0,0,0,475,2111,1,0,0,0,477,2113, + 1,0,0,0,479,2115,1,0,0,0,481,2117,1,0,0,0,483,2120,1,0,0,0,485,2122, + 1,0,0,0,487,2125,1,0,0,0,489,2127,1,0,0,0,491,2129,1,0,0,0,493,2132, + 1,0,0,0,495,2136,1,0,0,0,497,2138,1,0,0,0,499,2140,1,0,0,0,501,2142, + 1,0,0,0,503,2145,1,0,0,0,505,2151,1,0,0,0,507,2153,1,0,0,0,509,2157, + 1,0,0,0,511,2160,1,0,0,0,513,2163,1,0,0,0,515,2165,1,0,0,0,517,2167, + 1,0,0,0,519,2169,1,0,0,0,521,2171,1,0,0,0,523,2173,1,0,0,0,525,2175, + 1,0,0,0,527,2178,1,0,0,0,529,2180,1,0,0,0,531,2182,1,0,0,0,533,2184, + 1,0,0,0,535,2186,1,0,0,0,537,2188,1,0,0,0,539,2190,1,0,0,0,541,2204, + 1,0,0,0,543,2218,1,0,0,0,545,546,3,401,200,0,546,547,3,407,203,0, + 547,548,3,407,203,0,548,2,1,0,0,0,549,550,3,401,200,0,550,551,3, + 411,205,0,551,552,3,439,219,0,552,553,3,409,204,0,553,554,3,435, + 217,0,554,4,1,0,0,0,555,556,3,401,200,0,556,557,3,423,211,0,557, + 558,3,417,208,0,558,559,3,401,200,0,559,560,3,437,218,0,560,6,1, + 0,0,0,561,562,3,401,200,0,562,563,3,423,211,0,563,564,3,423,211, + 0,564,8,1,0,0,0,565,566,3,401,200,0,566,567,3,423,211,0,567,568, + 3,439,219,0,568,569,3,409,204,0,569,570,3,435,217,0,570,10,1,0,0, + 0,571,572,3,401,200,0,572,573,3,427,213,0,573,574,3,407,203,0,574, + 12,1,0,0,0,575,576,3,401,200,0,576,577,3,427,213,0,577,578,3,439, + 219,0,578,579,3,417,208,0,579,14,1,0,0,0,580,581,3,401,200,0,581, + 582,3,427,213,0,582,583,3,449,224,0,583,16,1,0,0,0,584,585,3,401, + 200,0,585,586,3,435,217,0,586,587,3,435,217,0,587,588,3,401,200, + 0,588,589,3,449,224,0,589,18,1,0,0,0,590,591,3,401,200,0,591,592, + 3,437,218,0,592,20,1,0,0,0,593,594,3,401,200,0,594,595,3,437,218, + 0,595,596,3,405,202,0,596,608,1,0,0,0,597,598,3,401,200,0,598,599, + 3,437,218,0,599,600,3,405,202,0,600,601,3,409,204,0,601,602,3,427, + 213,0,602,603,3,407,203,0,603,604,3,417,208,0,604,605,3,427,213, + 0,605,606,3,413,206,0,606,608,1,0,0,0,607,593,1,0,0,0,607,597,1, + 0,0,0,608,22,1,0,0,0,609,610,3,401,200,0,610,611,3,437,218,0,611, + 612,3,429,214,0,612,613,3,411,205,0,613,24,1,0,0,0,614,615,3,401, + 200,0,615,616,3,437,218,0,616,617,3,439,219,0,617,26,1,0,0,0,618, + 619,3,401,200,0,619,620,3,437,218,0,620,621,3,449,224,0,621,622, + 3,427,213,0,622,623,3,405,202,0,623,28,1,0,0,0,624,625,3,401,200, + 0,625,626,3,439,219,0,626,627,3,439,219,0,627,628,3,401,200,0,628, + 629,3,405,202,0,629,630,3,415,207,0,630,30,1,0,0,0,631,632,3,403, + 201,0,632,633,3,409,204,0,633,634,3,439,219,0,634,635,3,445,222, + 0,635,636,3,409,204,0,636,637,3,409,204,0,637,638,3,427,213,0,638, + 32,1,0,0,0,639,640,3,403,201,0,640,641,3,429,214,0,641,642,3,439, + 219,0,642,643,3,415,207,0,643,34,1,0,0,0,644,645,3,403,201,0,645, + 646,3,449,224,0,646,36,1,0,0,0,647,648,3,405,202,0,648,649,3,401, + 200,0,649,650,3,437,218,0,650,651,3,409,204,0,651,38,1,0,0,0,652, + 653,3,405,202,0,653,654,3,401,200,0,654,655,3,437,218,0,655,656, + 3,439,219,0,656,40,1,0,0,0,657,658,3,405,202,0,658,659,3,415,207, + 0,659,660,3,409,204,0,660,661,3,405,202,0,661,662,3,421,210,0,662, + 42,1,0,0,0,663,664,3,405,202,0,664,665,3,423,211,0,665,666,3,409, + 204,0,666,667,3,401,200,0,667,668,3,435,217,0,668,44,1,0,0,0,669, + 670,3,405,202,0,670,671,3,423,211,0,671,672,3,441,220,0,672,673, + 3,437,218,0,673,674,3,439,219,0,674,675,3,409,204,0,675,676,3,435, + 217,0,676,46,1,0,0,0,677,678,3,405,202,0,678,679,3,429,214,0,679, + 680,3,407,203,0,680,681,3,409,204,0,681,682,3,405,202,0,682,48,1, + 0,0,0,683,684,3,405,202,0,684,685,3,429,214,0,685,686,3,415,207, + 0,686,687,3,429,214,0,687,688,3,435,217,0,688,689,3,439,219,0,689, + 50,1,0,0,0,690,691,3,405,202,0,691,692,3,429,214,0,692,693,3,423, + 211,0,693,694,3,423,211,0,694,695,3,401,200,0,695,696,3,439,219, + 0,696,697,3,409,204,0,697,52,1,0,0,0,698,699,3,405,202,0,699,700, + 3,429,214,0,700,701,3,423,211,0,701,702,3,441,220,0,702,703,3,425, + 212,0,703,704,3,427,213,0,704,54,1,0,0,0,705,706,3,405,202,0,706, + 707,3,429,214,0,707,708,3,425,212,0,708,709,3,425,212,0,709,710, + 3,409,204,0,710,711,3,427,213,0,711,712,3,439,219,0,712,56,1,0,0, + 0,713,714,3,405,202,0,714,715,3,429,214,0,715,716,3,427,213,0,716, + 717,3,437,218,0,717,718,3,439,219,0,718,719,3,435,217,0,719,720, + 3,401,200,0,720,721,3,417,208,0,721,722,3,427,213,0,722,723,3,439, + 219,0,723,58,1,0,0,0,724,725,3,405,202,0,725,726,3,435,217,0,726, + 727,3,409,204,0,727,728,3,401,200,0,728,729,3,439,219,0,729,730, + 3,409,204,0,730,60,1,0,0,0,731,732,3,405,202,0,732,733,3,435,217, + 0,733,734,3,429,214,0,734,735,3,437,218,0,735,736,3,437,218,0,736, + 62,1,0,0,0,737,738,3,405,202,0,738,739,3,441,220,0,739,740,3,403, + 201,0,740,741,3,409,204,0,741,64,1,0,0,0,742,743,3,405,202,0,743, + 744,3,441,220,0,744,745,3,435,217,0,745,746,3,435,217,0,746,747, + 3,409,204,0,747,748,3,427,213,0,748,749,3,439,219,0,749,66,1,0,0, + 0,750,751,3,407,203,0,751,752,3,401,200,0,752,753,3,439,219,0,753, + 754,3,401,200,0,754,755,3,403,201,0,755,756,3,401,200,0,756,757, + 3,437,218,0,757,758,3,409,204,0,758,68,1,0,0,0,759,760,3,407,203, + 0,760,761,3,401,200,0,761,762,3,439,219,0,762,763,3,401,200,0,763, + 764,3,403,201,0,764,765,3,401,200,0,765,766,3,437,218,0,766,767, + 3,409,204,0,767,768,3,437,218,0,768,70,1,0,0,0,769,770,3,407,203, + 0,770,771,3,401,200,0,771,772,3,439,219,0,772,773,3,409,204,0,773, + 72,1,0,0,0,774,775,3,407,203,0,775,776,3,401,200,0,776,777,3,449, + 224,0,777,74,1,0,0,0,778,779,3,407,203,0,779,780,3,409,204,0,780, + 781,3,407,203,0,781,782,3,441,220,0,782,783,3,431,215,0,783,784, + 3,423,211,0,784,785,3,417,208,0,785,786,3,405,202,0,786,787,3,401, + 200,0,787,788,3,439,219,0,788,789,3,409,204,0,789,76,1,0,0,0,790, + 791,3,407,203,0,791,792,3,409,204,0,792,793,3,411,205,0,793,794, + 3,401,200,0,794,795,3,441,220,0,795,796,3,423,211,0,796,797,3,439, + 219,0,797,78,1,0,0,0,798,799,3,407,203,0,799,800,3,409,204,0,800, + 801,3,423,211,0,801,802,3,401,200,0,802,803,3,449,224,0,803,80,1, + 0,0,0,804,805,3,407,203,0,805,806,3,409,204,0,806,807,3,423,211, + 0,807,808,3,409,204,0,808,809,3,439,219,0,809,810,3,409,204,0,810, + 82,1,0,0,0,811,812,3,407,203,0,812,813,3,409,204,0,813,814,3,437, + 218,0,814,815,3,405,202,0,815,84,1,0,0,0,816,817,3,407,203,0,817, + 818,3,409,204,0,818,819,3,437,218,0,819,820,3,405,202,0,820,821, + 3,409,204,0,821,822,3,427,213,0,822,823,3,407,203,0,823,824,3,417, + 208,0,824,825,3,427,213,0,825,826,3,413,206,0,826,86,1,0,0,0,827, + 828,3,407,203,0,828,829,3,409,204,0,829,830,3,437,218,0,830,831, + 3,405,202,0,831,832,3,435,217,0,832,833,3,417,208,0,833,834,3,403, + 201,0,834,835,3,409,204,0,835,88,1,0,0,0,836,837,3,407,203,0,837, + 838,3,409,204,0,838,839,3,439,219,0,839,840,3,401,200,0,840,841, + 3,405,202,0,841,842,3,415,207,0,842,90,1,0,0,0,843,844,3,407,203, + 0,844,845,3,417,208,0,845,846,3,405,202,0,846,847,3,439,219,0,847, + 848,3,417,208,0,848,849,3,429,214,0,849,850,3,427,213,0,850,851, + 3,401,200,0,851,852,3,435,217,0,852,853,3,417,208,0,853,854,3,409, + 204,0,854,855,3,437,218,0,855,92,1,0,0,0,856,857,3,407,203,0,857, + 858,3,417,208,0,858,859,3,405,202,0,859,860,3,439,219,0,860,861, + 3,417,208,0,861,862,3,429,214,0,862,863,3,427,213,0,863,864,3,401, + 200,0,864,865,3,435,217,0,865,866,3,449,224,0,866,94,1,0,0,0,867, + 868,3,407,203,0,868,869,3,417,208,0,869,870,3,437,218,0,870,871, + 3,421,210,0,871,96,1,0,0,0,872,873,3,407,203,0,873,874,3,417,208, + 0,874,875,3,437,218,0,875,876,3,439,219,0,876,877,3,417,208,0,877, + 878,3,427,213,0,878,879,3,405,202,0,879,880,3,439,219,0,880,98,1, + 0,0,0,881,882,3,407,203,0,882,883,3,417,208,0,883,884,3,437,218, + 0,884,885,3,439,219,0,885,886,3,435,217,0,886,887,3,417,208,0,887, + 888,3,403,201,0,888,889,3,441,220,0,889,890,3,439,219,0,890,891, + 3,409,204,0,891,892,3,407,203,0,892,100,1,0,0,0,893,894,3,407,203, + 0,894,895,3,435,217,0,895,896,3,429,214,0,896,897,3,431,215,0,897, + 102,1,0,0,0,898,899,3,409,204,0,899,900,3,423,211,0,900,901,3,437, + 218,0,901,902,3,409,204,0,902,104,1,0,0,0,903,904,3,409,204,0,904, + 905,3,427,213,0,905,906,3,407,203,0,906,106,1,0,0,0,907,908,3,409, + 204,0,908,909,3,427,213,0,909,910,3,413,206,0,910,911,3,417,208, + 0,911,912,3,427,213,0,912,913,3,409,204,0,913,108,1,0,0,0,914,915, + 3,409,204,0,915,916,3,443,221,0,916,917,3,409,204,0,917,918,3,427, + 213,0,918,919,3,439,219,0,919,920,3,437,218,0,920,110,1,0,0,0,921, + 922,3,409,204,0,922,923,3,447,223,0,923,924,3,417,208,0,924,925, + 3,437,218,0,925,926,3,439,219,0,926,927,3,437,218,0,927,112,1,0, + 0,0,928,929,3,409,204,0,929,930,3,447,223,0,930,931,3,431,215,0, + 931,932,3,423,211,0,932,933,3,401,200,0,933,934,3,417,208,0,934, + 935,3,427,213,0,935,114,1,0,0,0,936,937,3,409,204,0,937,938,3,447, + 223,0,938,939,3,431,215,0,939,940,3,435,217,0,940,941,3,409,204, + 0,941,942,3,437,218,0,942,943,3,437,218,0,943,944,3,417,208,0,944, + 945,3,429,214,0,945,946,3,427,213,0,946,116,1,0,0,0,947,948,3,409, + 204,0,948,949,3,447,223,0,949,950,3,439,219,0,950,951,3,435,217, + 0,951,952,3,401,200,0,952,953,3,405,202,0,953,954,3,439,219,0,954, + 118,1,0,0,0,955,956,3,411,205,0,956,957,3,409,204,0,957,958,3,439, + 219,0,958,959,3,405,202,0,959,960,3,415,207,0,960,961,3,409,204, + 0,961,962,3,437,218,0,962,120,1,0,0,0,963,964,3,411,205,0,964,965, + 3,417,208,0,965,966,3,427,213,0,966,967,3,401,200,0,967,968,3,423, + 211,0,968,122,1,0,0,0,969,970,3,411,205,0,970,971,3,417,208,0,971, + 972,3,435,217,0,972,973,3,437,218,0,973,974,3,439,219,0,974,124, + 1,0,0,0,975,976,3,411,205,0,976,977,3,423,211,0,977,978,3,441,220, + 0,978,979,3,437,218,0,979,980,3,415,207,0,980,126,1,0,0,0,981,982, + 3,411,205,0,982,983,3,429,214,0,983,984,3,423,211,0,984,985,3,423, + 211,0,985,986,3,429,214,0,986,987,3,445,222,0,987,988,3,417,208, + 0,988,989,3,427,213,0,989,990,3,413,206,0,990,128,1,0,0,0,991,992, + 3,411,205,0,992,993,3,429,214,0,993,994,3,435,217,0,994,130,1,0, + 0,0,995,996,3,411,205,0,996,997,3,429,214,0,997,998,3,435,217,0, + 998,999,3,425,212,0,999,1000,3,401,200,0,1000,1001,3,439,219,0,1001, + 132,1,0,0,0,1002,1003,3,411,205,0,1003,1004,3,435,217,0,1004,1005, + 3,409,204,0,1005,1006,3,409,204,0,1006,1007,3,451,225,0,1007,1008, + 3,409,204,0,1008,134,1,0,0,0,1009,1010,3,411,205,0,1010,1011,3,435, + 217,0,1011,1012,3,429,214,0,1012,1013,3,425,212,0,1013,136,1,0,0, + 0,1014,1015,3,411,205,0,1015,1016,3,441,220,0,1016,1017,3,423,211, + 0,1017,1018,3,423,211,0,1018,138,1,0,0,0,1019,1020,3,411,205,0,1020, + 1021,3,441,220,0,1021,1022,3,427,213,0,1022,1023,3,405,202,0,1023, + 1024,3,439,219,0,1024,1025,3,417,208,0,1025,1026,3,429,214,0,1026, + 1027,3,427,213,0,1027,140,1,0,0,0,1028,1029,3,413,206,0,1029,1030, + 3,423,211,0,1030,1031,3,429,214,0,1031,1032,3,403,201,0,1032,1033, + 3,401,200,0,1033,1034,3,423,211,0,1034,142,1,0,0,0,1035,1036,3,413, + 206,0,1036,1037,3,435,217,0,1037,1038,3,401,200,0,1038,1039,3,427, + 213,0,1039,1040,3,441,220,0,1040,1041,3,423,211,0,1041,1042,3,401, + 200,0,1042,1043,3,435,217,0,1043,1044,3,417,208,0,1044,1045,3,439, + 219,0,1045,1046,3,449,224,0,1046,144,1,0,0,0,1047,1048,3,413,206, + 0,1048,1049,3,435,217,0,1049,1050,3,429,214,0,1050,1051,3,441,220, + 0,1051,1052,3,431,215,0,1052,146,1,0,0,0,1053,1054,3,415,207,0,1054, + 1055,3,401,200,0,1055,1056,3,443,221,0,1056,1057,3,417,208,0,1057, + 1058,3,427,213,0,1058,1059,3,413,206,0,1059,148,1,0,0,0,1060,1061, + 3,415,207,0,1061,1062,3,417,208,0,1062,1063,3,409,204,0,1063,1064, + 3,435,217,0,1064,1065,3,401,200,0,1065,1066,3,435,217,0,1066,1067, + 3,405,202,0,1067,1068,3,415,207,0,1068,1069,3,417,208,0,1069,1070, + 3,405,202,0,1070,1071,3,401,200,0,1071,1072,3,423,211,0,1072,150, + 1,0,0,0,1073,1074,3,415,207,0,1074,1075,3,429,214,0,1075,1076,3, + 441,220,0,1076,1077,3,435,217,0,1077,152,1,0,0,0,1078,1079,3,417, + 208,0,1079,1080,3,407,203,0,1080,154,1,0,0,0,1081,1082,3,417,208, + 0,1082,1083,3,411,205,0,1083,156,1,0,0,0,1084,1085,3,417,208,0,1085, + 1086,3,423,211,0,1086,1087,3,417,208,0,1087,1088,3,421,210,0,1088, + 1089,3,409,204,0,1089,158,1,0,0,0,1090,1091,3,417,208,0,1091,1092, + 3,427,213,0,1092,160,1,0,0,0,1093,1094,3,417,208,0,1094,1095,3,427, + 213,0,1095,1096,3,407,203,0,1096,1097,3,409,204,0,1097,1098,3,447, + 223,0,1098,162,1,0,0,0,1099,1100,3,417,208,0,1100,1101,3,427,213, + 0,1101,1102,3,411,205,0,1102,1113,1,0,0,0,1103,1104,3,417,208,0, + 1104,1105,3,427,213,0,1105,1106,3,411,205,0,1106,1107,3,417,208, + 0,1107,1108,3,427,213,0,1108,1109,3,417,208,0,1109,1110,3,439,219, + 0,1110,1111,3,449,224,0,1111,1113,1,0,0,0,1112,1099,1,0,0,0,1112, + 1103,1,0,0,0,1113,164,1,0,0,0,1114,1115,3,417,208,0,1115,1116,3, + 427,213,0,1116,1117,3,419,209,0,1117,1118,3,409,204,0,1118,1119, + 3,405,202,0,1119,1120,3,439,219,0,1120,1121,3,417,208,0,1121,1122, + 3,443,221,0,1122,1123,3,409,204,0,1123,166,1,0,0,0,1124,1125,3,417, + 208,0,1125,1126,3,427,213,0,1126,1127,3,427,213,0,1127,1128,3,409, + 204,0,1128,1129,3,435,217,0,1129,168,1,0,0,0,1130,1131,3,417,208, + 0,1131,1132,3,427,213,0,1132,1133,3,437,218,0,1133,1134,3,409,204, + 0,1134,1135,3,435,217,0,1135,1136,3,439,219,0,1136,170,1,0,0,0,1137, + 1138,3,417,208,0,1138,1139,3,427,213,0,1139,1140,3,439,219,0,1140, + 1141,3,409,204,0,1141,1142,3,435,217,0,1142,1143,3,443,221,0,1143, + 1144,3,401,200,0,1144,1145,3,423,211,0,1145,172,1,0,0,0,1146,1147, + 3,417,208,0,1147,1148,3,427,213,0,1148,1149,3,439,219,0,1149,1150, + 3,429,214,0,1150,174,1,0,0,0,1151,1152,3,417,208,0,1152,1153,3,437, + 218,0,1153,176,1,0,0,0,1154,1155,3,417,208,0,1155,1156,3,437,218, + 0,1156,1157,3,537,268,0,1157,1158,3,429,214,0,1158,1159,3,403,201, + 0,1159,1160,3,419,209,0,1160,1161,3,409,204,0,1161,1162,3,405,202, + 0,1162,1163,3,439,219,0,1163,1164,3,537,268,0,1164,1165,3,417,208, + 0,1165,1166,3,407,203,0,1166,178,1,0,0,0,1167,1168,3,419,209,0,1168, + 1169,3,429,214,0,1169,1170,3,417,208,0,1170,1171,3,427,213,0,1171, + 180,1,0,0,0,1172,1173,3,421,210,0,1173,1174,3,409,204,0,1174,1175, + 3,449,224,0,1175,182,1,0,0,0,1176,1177,3,421,210,0,1177,1178,3,417, + 208,0,1178,1179,3,423,211,0,1179,1180,3,423,211,0,1180,184,1,0,0, + 0,1181,1182,3,423,211,0,1182,1183,3,401,200,0,1183,1184,3,437,218, + 0,1184,1185,3,439,219,0,1185,186,1,0,0,0,1186,1187,3,423,211,0,1187, + 1188,3,401,200,0,1188,1189,3,449,224,0,1189,1190,3,429,214,0,1190, + 1191,3,441,220,0,1191,1192,3,439,219,0,1192,188,1,0,0,0,1193,1194, + 3,423,211,0,1194,1195,3,409,204,0,1195,1196,3,401,200,0,1196,1197, + 3,407,203,0,1197,1198,3,417,208,0,1198,1199,3,427,213,0,1199,1200, + 3,413,206,0,1200,190,1,0,0,0,1201,1202,3,423,211,0,1202,1203,3,409, + 204,0,1203,1204,3,411,205,0,1204,1205,3,439,219,0,1205,192,1,0,0, + 0,1206,1207,3,423,211,0,1207,1208,3,417,208,0,1208,1209,3,411,205, + 0,1209,1210,3,409,204,0,1210,1211,3,439,219,0,1211,1212,3,417,208, + 0,1212,1213,3,425,212,0,1213,1214,3,409,204,0,1214,194,1,0,0,0,1215, + 1216,3,423,211,0,1216,1217,3,417,208,0,1217,1218,3,421,210,0,1218, + 1219,3,409,204,0,1219,196,1,0,0,0,1220,1221,3,423,211,0,1221,1222, + 3,417,208,0,1222,1223,3,425,212,0,1223,1224,3,417,208,0,1224,1225, + 3,439,219,0,1225,198,1,0,0,0,1226,1227,3,423,211,0,1227,1228,3,417, + 208,0,1228,1229,3,443,221,0,1229,1230,3,409,204,0,1230,200,1,0,0, + 0,1231,1232,3,423,211,0,1232,1233,3,429,214,0,1233,1234,3,405,202, + 0,1234,1235,3,401,200,0,1235,1236,3,423,211,0,1236,202,1,0,0,0,1237, + 1238,3,423,211,0,1238,1239,3,429,214,0,1239,1240,3,413,206,0,1240, + 1241,3,437,218,0,1241,204,1,0,0,0,1242,1243,3,425,212,0,1243,1244, + 3,401,200,0,1244,1245,3,439,219,0,1245,1246,3,409,204,0,1246,1247, + 3,435,217,0,1247,1248,3,417,208,0,1248,1249,3,401,200,0,1249,1250, + 3,423,211,0,1250,1251,3,417,208,0,1251,1252,3,451,225,0,1252,1253, + 3,409,204,0,1253,206,1,0,0,0,1254,1255,3,425,212,0,1255,1256,3,401, + 200,0,1256,1257,3,439,219,0,1257,1258,3,409,204,0,1258,1259,3,435, + 217,0,1259,1260,3,417,208,0,1260,1261,3,401,200,0,1261,1262,3,423, + 211,0,1262,1263,3,417,208,0,1263,1264,3,451,225,0,1264,1265,3,409, + 204,0,1265,1266,3,407,203,0,1266,208,1,0,0,0,1267,1268,3,425,212, + 0,1268,1269,3,401,200,0,1269,1270,3,447,223,0,1270,210,1,0,0,0,1271, + 1272,3,425,212,0,1272,1273,3,409,204,0,1273,1274,3,435,217,0,1274, + 1275,3,413,206,0,1275,1276,3,409,204,0,1276,1277,3,437,218,0,1277, + 212,1,0,0,0,1278,1279,3,425,212,0,1279,1280,3,417,208,0,1280,1281, + 3,427,213,0,1281,214,1,0,0,0,1282,1283,3,425,212,0,1283,1284,3,417, + 208,0,1284,1285,3,427,213,0,1285,1286,3,441,220,0,1286,1287,3,439, + 219,0,1287,1288,3,409,204,0,1288,216,1,0,0,0,1289,1290,3,425,212, + 0,1290,1291,3,429,214,0,1291,1292,3,407,203,0,1292,1293,3,417,208, + 0,1293,1294,3,411,205,0,1294,1295,3,449,224,0,1295,218,1,0,0,0,1296, + 1297,3,425,212,0,1297,1298,3,429,214,0,1298,1299,3,427,213,0,1299, + 1300,3,439,219,0,1300,1301,3,415,207,0,1301,220,1,0,0,0,1302,1303, + 3,425,212,0,1303,1304,3,429,214,0,1304,1305,3,443,221,0,1305,1306, + 3,409,204,0,1306,222,1,0,0,0,1307,1308,3,425,212,0,1308,1309,3,441, + 220,0,1309,1310,3,439,219,0,1310,1311,3,401,200,0,1311,1312,3,439, + 219,0,1312,1313,3,417,208,0,1313,1314,3,429,214,0,1314,1315,3,427, + 213,0,1315,224,1,0,0,0,1316,1317,3,427,213,0,1317,1318,3,401,200, + 0,1318,1319,3,427,213,0,1319,226,1,0,0,0,1320,1321,3,427,213,0,1321, + 1322,3,429,214,0,1322,228,1,0,0,0,1323,1324,3,427,213,0,1324,1325, + 3,429,214,0,1325,1326,3,439,219,0,1326,230,1,0,0,0,1327,1328,3,427, + 213,0,1328,1329,3,441,220,0,1329,1330,3,423,211,0,1330,1331,3,423, + 211,0,1331,232,1,0,0,0,1332,1333,3,427,213,0,1333,1334,3,441,220, + 0,1334,1335,3,423,211,0,1335,1336,3,423,211,0,1336,1337,3,437,218, + 0,1337,234,1,0,0,0,1338,1339,3,429,214,0,1339,1340,3,411,205,0,1340, + 1341,3,411,205,0,1341,1342,3,437,218,0,1342,1343,3,409,204,0,1343, + 1344,3,439,219,0,1344,236,1,0,0,0,1345,1346,3,429,214,0,1346,1347, + 3,427,213,0,1347,238,1,0,0,0,1348,1349,3,429,214,0,1349,1350,3,431, + 215,0,1350,1351,3,439,219,0,1351,1352,3,417,208,0,1352,1353,3,425, + 212,0,1353,1354,3,417,208,0,1354,1355,3,451,225,0,1355,1356,3,409, + 204,0,1356,240,1,0,0,0,1357,1358,3,429,214,0,1358,1359,3,435,217, + 0,1359,242,1,0,0,0,1360,1361,3,429,214,0,1361,1362,3,435,217,0,1362, + 1363,3,407,203,0,1363,1364,3,409,204,0,1364,1365,3,435,217,0,1365, + 244,1,0,0,0,1366,1367,3,429,214,0,1367,1368,3,441,220,0,1368,1369, + 3,439,219,0,1369,1370,3,409,204,0,1370,1371,3,435,217,0,1371,246, + 1,0,0,0,1372,1373,3,429,214,0,1373,1374,3,441,220,0,1374,1375,3, + 439,219,0,1375,1376,3,411,205,0,1376,1377,3,417,208,0,1377,1378, + 3,423,211,0,1378,1379,3,409,204,0,1379,248,1,0,0,0,1380,1381,3,429, + 214,0,1381,1382,3,443,221,0,1382,1383,3,409,204,0,1383,1384,3,435, + 217,0,1384,250,1,0,0,0,1385,1386,3,431,215,0,1386,1387,3,401,200, + 0,1387,1388,3,435,217,0,1388,1389,3,439,219,0,1389,1390,3,417,208, + 0,1390,1391,3,439,219,0,1391,1392,3,417,208,0,1392,1393,3,429,214, + 0,1393,1394,3,427,213,0,1394,252,1,0,0,0,1395,1396,3,431,215,0,1396, + 1397,3,429,214,0,1397,1398,3,431,215,0,1398,1399,3,441,220,0,1399, + 1400,3,423,211,0,1400,1401,3,401,200,0,1401,1402,3,439,219,0,1402, + 1403,3,409,204,0,1403,254,1,0,0,0,1404,1405,3,431,215,0,1405,1406, + 3,435,217,0,1406,1407,3,409,204,0,1407,1408,3,405,202,0,1408,1409, + 3,409,204,0,1409,1410,3,407,203,0,1410,1411,3,417,208,0,1411,1412, + 3,427,213,0,1412,1413,3,413,206,0,1413,256,1,0,0,0,1414,1415,3,431, + 215,0,1415,1416,3,435,217,0,1416,1417,3,409,204,0,1417,1418,3,445, + 222,0,1418,1419,3,415,207,0,1419,1420,3,409,204,0,1420,1421,3,435, + 217,0,1421,1422,3,409,204,0,1422,258,1,0,0,0,1423,1424,3,431,215, + 0,1424,1425,3,435,217,0,1425,1426,3,417,208,0,1426,1427,3,425,212, + 0,1427,1428,3,401,200,0,1428,1429,3,435,217,0,1429,1430,3,449,224, + 0,1430,260,1,0,0,0,1431,1432,3,431,215,0,1432,1433,3,435,217,0,1433, + 1434,3,429,214,0,1434,1435,3,419,209,0,1435,1436,3,409,204,0,1436, + 1437,3,405,202,0,1437,1438,3,439,219,0,1438,1439,3,417,208,0,1439, + 1440,3,429,214,0,1440,1441,3,427,213,0,1441,262,1,0,0,0,1442,1443, + 3,433,216,0,1443,1444,3,441,220,0,1444,1445,3,401,200,0,1445,1446, + 3,435,217,0,1446,1447,3,439,219,0,1447,1448,3,409,204,0,1448,1449, + 3,435,217,0,1449,264,1,0,0,0,1450,1451,3,435,217,0,1451,1452,3,401, + 200,0,1452,1453,3,427,213,0,1453,1454,3,413,206,0,1454,1455,3,409, + 204,0,1455,266,1,0,0,0,1456,1457,3,435,217,0,1457,1458,3,409,204, + 0,1458,1459,3,423,211,0,1459,1460,3,429,214,0,1460,1461,3,401,200, + 0,1461,1462,3,407,203,0,1462,268,1,0,0,0,1463,1464,3,435,217,0,1464, + 1465,3,409,204,0,1465,1466,3,425,212,0,1466,1467,3,429,214,0,1467, + 1468,3,443,221,0,1468,1469,3,409,204,0,1469,270,1,0,0,0,1470,1471, + 3,435,217,0,1471,1472,3,409,204,0,1472,1473,3,427,213,0,1473,1474, + 3,401,200,0,1474,1475,3,425,212,0,1475,1476,3,409,204,0,1476,272, + 1,0,0,0,1477,1478,3,435,217,0,1478,1479,3,409,204,0,1479,1480,3, + 431,215,0,1480,1481,3,423,211,0,1481,1482,3,401,200,0,1482,1483, + 3,405,202,0,1483,1484,3,409,204,0,1484,274,1,0,0,0,1485,1486,3,435, + 217,0,1486,1487,3,409,204,0,1487,1488,3,431,215,0,1488,1489,3,423, + 211,0,1489,1490,3,417,208,0,1490,1491,3,405,202,0,1491,1492,3,401, + 200,0,1492,276,1,0,0,0,1493,1494,3,435,217,0,1494,1495,3,409,204, + 0,1495,1496,3,431,215,0,1496,1497,3,423,211,0,1497,1498,3,417,208, + 0,1498,1499,3,405,202,0,1499,1500,3,401,200,0,1500,1501,3,439,219, + 0,1501,1502,3,409,204,0,1502,1503,3,407,203,0,1503,278,1,0,0,0,1504, + 1505,3,435,217,0,1505,1506,3,417,208,0,1506,1507,3,413,206,0,1507, + 1508,3,415,207,0,1508,1509,3,439,219,0,1509,280,1,0,0,0,1510,1511, + 3,435,217,0,1511,1512,3,429,214,0,1512,1513,3,423,211,0,1513,1514, + 3,423,211,0,1514,1515,3,441,220,0,1515,1516,3,431,215,0,1516,282, + 1,0,0,0,1517,1518,3,435,217,0,1518,1519,3,429,214,0,1519,1520,3, + 445,222,0,1520,284,1,0,0,0,1521,1522,3,435,217,0,1522,1523,3,429, + 214,0,1523,1524,3,445,222,0,1524,1525,3,437,218,0,1525,286,1,0,0, + 0,1526,1527,3,437,218,0,1527,1528,3,401,200,0,1528,1529,3,425,212, + 0,1529,1530,3,431,215,0,1530,1531,3,423,211,0,1531,1532,3,409,204, + 0,1532,288,1,0,0,0,1533,1534,3,437,218,0,1534,1535,3,409,204,0,1535, + 1536,3,405,202,0,1536,1537,3,429,214,0,1537,1538,3,427,213,0,1538, + 1539,3,407,203,0,1539,290,1,0,0,0,1540,1541,3,437,218,0,1541,1542, + 3,409,204,0,1542,1543,3,423,211,0,1543,1544,3,409,204,0,1544,1545, + 3,405,202,0,1545,1546,3,439,219,0,1546,292,1,0,0,0,1547,1548,3,437, + 218,0,1548,1549,3,409,204,0,1549,1550,3,425,212,0,1550,1551,3,417, + 208,0,1551,294,1,0,0,0,1552,1553,3,437,218,0,1553,1554,3,409,204, + 0,1554,1555,3,427,213,0,1555,1556,3,407,203,0,1556,1557,3,437,218, + 0,1557,296,1,0,0,0,1558,1559,3,437,218,0,1559,1560,3,409,204,0,1560, + 1561,3,439,219,0,1561,298,1,0,0,0,1562,1563,3,437,218,0,1563,1564, + 3,409,204,0,1564,1565,3,439,219,0,1565,1566,3,439,219,0,1566,1567, + 3,417,208,0,1567,1568,3,427,213,0,1568,1569,3,413,206,0,1569,1570, + 3,437,218,0,1570,300,1,0,0,0,1571,1572,3,437,218,0,1572,1573,3,415, + 207,0,1573,1574,3,429,214,0,1574,1575,3,445,222,0,1575,302,1,0,0, + 0,1576,1577,3,437,218,0,1577,1578,3,429,214,0,1578,1579,3,441,220, + 0,1579,1580,3,435,217,0,1580,1581,3,405,202,0,1581,1582,3,409,204, + 0,1582,304,1,0,0,0,1583,1584,3,437,218,0,1584,1585,3,439,219,0,1585, + 1586,3,401,200,0,1586,1587,3,435,217,0,1587,1588,3,439,219,0,1588, + 306,1,0,0,0,1589,1590,3,437,218,0,1590,1591,3,439,219,0,1591,1592, + 3,429,214,0,1592,1593,3,431,215,0,1593,308,1,0,0,0,1594,1595,3,437, + 218,0,1595,1596,3,441,220,0,1596,1597,3,403,201,0,1597,1598,3,437, + 218,0,1598,1599,3,439,219,0,1599,1600,3,435,217,0,1600,1601,3,417, + 208,0,1601,1602,3,427,213,0,1602,1603,3,413,206,0,1603,310,1,0,0, + 0,1604,1605,3,437,218,0,1605,1606,3,449,224,0,1606,1607,3,427,213, + 0,1607,1608,3,405,202,0,1608,312,1,0,0,0,1609,1610,3,437,218,0,1610, + 1611,3,449,224,0,1611,1612,3,427,213,0,1612,1613,3,439,219,0,1613, + 1614,3,401,200,0,1614,1615,3,447,223,0,1615,314,1,0,0,0,1616,1617, + 3,437,218,0,1617,1618,3,449,224,0,1618,1619,3,437,218,0,1619,1620, + 3,439,219,0,1620,1621,3,409,204,0,1621,1622,3,425,212,0,1622,316, + 1,0,0,0,1623,1624,3,439,219,0,1624,1625,3,401,200,0,1625,1626,3, + 403,201,0,1626,1627,3,423,211,0,1627,1628,3,409,204,0,1628,318,1, + 0,0,0,1629,1630,3,439,219,0,1630,1631,3,401,200,0,1631,1632,3,403, + 201,0,1632,1633,3,423,211,0,1633,1634,3,409,204,0,1634,1635,3,437, + 218,0,1635,320,1,0,0,0,1636,1637,3,439,219,0,1637,1638,3,409,204, + 0,1638,1639,3,425,212,0,1639,1640,3,431,215,0,1640,1641,3,429,214, + 0,1641,1642,3,435,217,0,1642,1643,3,401,200,0,1643,1644,3,435,217, + 0,1644,1645,3,449,224,0,1645,322,1,0,0,0,1646,1647,3,439,219,0,1647, + 1648,3,409,204,0,1648,1649,3,437,218,0,1649,1650,3,439,219,0,1650, + 324,1,0,0,0,1651,1652,3,439,219,0,1652,1653,3,415,207,0,1653,1654, + 3,409,204,0,1654,1655,3,427,213,0,1655,326,1,0,0,0,1656,1657,3,439, + 219,0,1657,1658,3,417,208,0,1658,1659,3,409,204,0,1659,1660,3,437, + 218,0,1660,328,1,0,0,0,1661,1662,3,439,219,0,1662,1663,3,417,208, + 0,1663,1664,3,425,212,0,1664,1665,3,409,204,0,1665,1666,3,429,214, + 0,1666,1667,3,441,220,0,1667,1668,3,439,219,0,1668,330,1,0,0,0,1669, + 1670,3,439,219,0,1670,1671,3,417,208,0,1671,1672,3,425,212,0,1672, + 1673,3,409,204,0,1673,1674,3,437,218,0,1674,1675,3,439,219,0,1675, + 1676,3,401,200,0,1676,1677,3,425,212,0,1677,1678,3,431,215,0,1678, + 332,1,0,0,0,1679,1680,3,439,219,0,1680,1681,3,429,214,0,1681,334, + 1,0,0,0,1682,1683,3,439,219,0,1683,1684,3,429,214,0,1684,1685,3, + 431,215,0,1685,336,1,0,0,0,1686,1687,3,439,219,0,1687,1688,3,429, + 214,0,1688,1689,3,439,219,0,1689,1690,3,401,200,0,1690,1691,3,423, + 211,0,1691,1692,3,437,218,0,1692,338,1,0,0,0,1693,1694,3,439,219, + 0,1694,1695,3,435,217,0,1695,1696,3,401,200,0,1696,1697,3,417,208, + 0,1697,1698,3,423,211,0,1698,1699,3,417,208,0,1699,1700,3,427,213, + 0,1700,1701,3,413,206,0,1701,340,1,0,0,0,1702,1703,3,439,219,0,1703, + 1704,3,435,217,0,1704,1705,3,417,208,0,1705,1706,3,425,212,0,1706, + 342,1,0,0,0,1707,1708,3,439,219,0,1708,1709,3,435,217,0,1709,1710, + 3,441,220,0,1710,1711,3,427,213,0,1711,1712,3,405,202,0,1712,1713, + 3,401,200,0,1713,1714,3,439,219,0,1714,1715,3,409,204,0,1715,344, + 1,0,0,0,1716,1717,3,439,219,0,1717,1718,3,439,219,0,1718,1719,3, + 423,211,0,1719,346,1,0,0,0,1720,1721,3,439,219,0,1721,1722,3,449, + 224,0,1722,1723,3,431,215,0,1723,1724,3,409,204,0,1724,348,1,0,0, + 0,1725,1726,3,441,220,0,1726,1727,3,427,213,0,1727,1728,3,403,201, + 0,1728,1729,3,429,214,0,1729,1730,3,441,220,0,1730,1731,3,427,213, + 0,1731,1732,3,407,203,0,1732,1733,3,409,204,0,1733,1734,3,407,203, + 0,1734,350,1,0,0,0,1735,1736,3,441,220,0,1736,1737,3,427,213,0,1737, + 1738,3,417,208,0,1738,1739,3,429,214,0,1739,1740,3,427,213,0,1740, + 352,1,0,0,0,1741,1742,3,441,220,0,1742,1743,3,431,215,0,1743,1744, + 3,407,203,0,1744,1745,3,401,200,0,1745,1746,3,439,219,0,1746,1747, + 3,409,204,0,1747,354,1,0,0,0,1748,1749,3,441,220,0,1749,1750,3,437, + 218,0,1750,1751,3,409,204,0,1751,356,1,0,0,0,1752,1753,3,441,220, + 0,1753,1754,3,437,218,0,1754,1755,3,417,208,0,1755,1756,3,427,213, + 0,1756,1757,3,413,206,0,1757,358,1,0,0,0,1758,1759,3,441,220,0,1759, + 1760,3,441,220,0,1760,1761,3,417,208,0,1761,1762,3,407,203,0,1762, + 360,1,0,0,0,1763,1764,3,443,221,0,1764,1765,3,401,200,0,1765,1766, + 3,423,211,0,1766,1767,3,441,220,0,1767,1768,3,409,204,0,1768,1769, + 3,437,218,0,1769,362,1,0,0,0,1770,1771,3,443,221,0,1771,1772,3,417, + 208,0,1772,1773,3,409,204,0,1773,1774,3,445,222,0,1774,364,1,0,0, + 0,1775,1776,3,443,221,0,1776,1777,3,429,214,0,1777,1778,3,423,211, + 0,1778,1779,3,441,220,0,1779,1780,3,425,212,0,1780,1781,3,409,204, + 0,1781,366,1,0,0,0,1782,1783,3,445,222,0,1783,1784,3,401,200,0,1784, + 1785,3,439,219,0,1785,1786,3,405,202,0,1786,1787,3,415,207,0,1787, + 368,1,0,0,0,1788,1789,3,445,222,0,1789,1790,3,409,204,0,1790,1791, + 3,409,204,0,1791,1792,3,421,210,0,1792,370,1,0,0,0,1793,1794,3,445, + 222,0,1794,1795,3,415,207,0,1795,1796,3,409,204,0,1796,1797,3,427, + 213,0,1797,372,1,0,0,0,1798,1799,3,445,222,0,1799,1800,3,415,207, + 0,1800,1801,3,409,204,0,1801,1802,3,435,217,0,1802,1803,3,409,204, + 0,1803,374,1,0,0,0,1804,1805,3,445,222,0,1805,1806,3,417,208,0,1806, + 1807,3,427,213,0,1807,1808,3,407,203,0,1808,1809,3,429,214,0,1809, + 1810,3,445,222,0,1810,376,1,0,0,0,1811,1812,3,445,222,0,1812,1813, + 3,417,208,0,1813,1814,3,439,219,0,1814,1815,3,415,207,0,1815,378, + 1,0,0,0,1816,1817,3,449,224,0,1817,1818,3,409,204,0,1818,1819,3, + 401,200,0,1819,1820,3,435,217,0,1820,1827,1,0,0,0,1821,1822,3,449, + 224,0,1822,1823,3,449,224,0,1823,1824,3,449,224,0,1824,1825,3,449, + 224,0,1825,1827,1,0,0,0,1826,1816,1,0,0,0,1826,1821,1,0,0,0,1827, + 380,1,0,0,0,1828,1829,5,102,0,0,1829,1830,5,97,0,0,1830,1831,5,108, + 0,0,1831,1832,5,115,0,0,1832,1833,5,101,0,0,1833,382,1,0,0,0,1834, + 1835,5,116,0,0,1835,1836,5,114,0,0,1836,1837,5,117,0,0,1837,1838, + 5,101,0,0,1838,384,1,0,0,0,1839,1840,3,467,233,0,1840,1841,3,403, + 201,0,1841,1870,1,0,0,0,1842,1843,3,467,233,0,1843,1844,3,411,205, + 0,1844,1870,1,0,0,0,1845,1846,3,467,233,0,1846,1847,3,435,217,0, + 1847,1870,1,0,0,0,1848,1849,3,467,233,0,1849,1850,3,427,213,0,1850, + 1870,1,0,0,0,1851,1852,3,467,233,0,1852,1853,3,439,219,0,1853,1870, + 1,0,0,0,1854,1855,3,467,233,0,1855,1856,5,48,0,0,1856,1870,1,0,0, + 0,1857,1858,3,467,233,0,1858,1859,3,401,200,0,1859,1870,1,0,0,0, + 1860,1861,3,467,233,0,1861,1862,3,443,221,0,1862,1870,1,0,0,0,1863, + 1864,3,467,233,0,1864,1865,3,467,233,0,1865,1870,1,0,0,0,1866,1867, + 3,467,233,0,1867,1868,3,521,260,0,1868,1870,1,0,0,0,1869,1839,1, + 0,0,0,1869,1842,1,0,0,0,1869,1845,1,0,0,0,1869,1848,1,0,0,0,1869, + 1851,1,0,0,0,1869,1854,1,0,0,0,1869,1857,1,0,0,0,1869,1860,1,0,0, + 0,1869,1863,1,0,0,0,1869,1866,1,0,0,0,1870,386,1,0,0,0,1871,1875, + 3,453,226,0,1872,1875,3,537,268,0,1873,1875,3,477,238,0,1874,1871, + 1,0,0,0,1874,1872,1,0,0,0,1874,1873,1,0,0,0,1875,1882,1,0,0,0,1876, + 1881,3,453,226,0,1877,1881,3,537,268,0,1878,1881,3,457,228,0,1879, + 1881,3,477,238,0,1880,1876,1,0,0,0,1880,1877,1,0,0,0,1880,1878,1, + 0,0,0,1880,1879,1,0,0,0,1881,1884,1,0,0,0,1882,1880,1,0,0,0,1882, + 1883,1,0,0,0,1883,1912,1,0,0,0,1884,1882,1,0,0,0,1885,1893,3,465, + 232,0,1886,1892,8,0,0,0,1887,1892,3,385,192,0,1888,1889,3,465,232, + 0,1889,1890,3,465,232,0,1890,1892,1,0,0,0,1891,1886,1,0,0,0,1891, + 1887,1,0,0,0,1891,1888,1,0,0,0,1892,1895,1,0,0,0,1893,1891,1,0,0, + 0,1893,1894,1,0,0,0,1894,1896,1,0,0,0,1895,1893,1,0,0,0,1896,1897, + 3,465,232,0,1897,1912,1,0,0,0,1898,1906,3,519,259,0,1899,1905,8, + 1,0,0,1900,1905,3,385,192,0,1901,1902,3,519,259,0,1902,1903,3,519, + 259,0,1903,1905,1,0,0,0,1904,1899,1,0,0,0,1904,1900,1,0,0,0,1904, + 1901,1,0,0,0,1905,1908,1,0,0,0,1906,1904,1,0,0,0,1906,1907,1,0,0, + 0,1907,1909,1,0,0,0,1908,1906,1,0,0,0,1909,1910,3,519,259,0,1910, + 1912,1,0,0,0,1911,1874,1,0,0,0,1911,1885,1,0,0,0,1911,1898,1,0,0, + 0,1912,388,1,0,0,0,1913,1914,3,395,197,0,1914,1918,3,479,239,0,1915, + 1917,3,459,229,0,1916,1915,1,0,0,0,1917,1920,1,0,0,0,1918,1916,1, + 0,0,0,1918,1919,1,0,0,0,1919,1923,1,0,0,0,1920,1918,1,0,0,0,1921, + 1924,3,431,215,0,1922,1924,3,409,204,0,1923,1921,1,0,0,0,1923,1922, + 1,0,0,0,1924,1927,1,0,0,0,1925,1928,3,515,257,0,1926,1928,3,475, + 237,0,1927,1925,1,0,0,0,1927,1926,1,0,0,0,1927,1928,1,0,0,0,1928, + 1930,1,0,0,0,1929,1931,3,457,228,0,1930,1929,1,0,0,0,1931,1932,1, + 0,0,0,1932,1930,1,0,0,0,1932,1933,1,0,0,0,1933,1990,1,0,0,0,1934, + 1937,3,395,197,0,1935,1938,3,431,215,0,1936,1938,3,409,204,0,1937, + 1935,1,0,0,0,1937,1936,1,0,0,0,1938,1941,1,0,0,0,1939,1942,3,515, + 257,0,1940,1942,3,475,237,0,1941,1939,1,0,0,0,1941,1940,1,0,0,0, + 1941,1942,1,0,0,0,1942,1944,1,0,0,0,1943,1945,3,457,228,0,1944,1943, + 1,0,0,0,1945,1946,1,0,0,0,1946,1944,1,0,0,0,1946,1947,1,0,0,0,1947, + 1990,1,0,0,0,1948,1949,3,393,196,0,1949,1953,3,479,239,0,1950,1952, + 3,457,228,0,1951,1950,1,0,0,0,1952,1955,1,0,0,0,1953,1951,1,0,0, + 0,1953,1954,1,0,0,0,1954,1956,1,0,0,0,1955,1953,1,0,0,0,1956,1959, + 3,409,204,0,1957,1960,3,515,257,0,1958,1960,3,475,237,0,1959,1957, + 1,0,0,0,1959,1958,1,0,0,0,1959,1960,1,0,0,0,1960,1962,1,0,0,0,1961, + 1963,3,457,228,0,1962,1961,1,0,0,0,1963,1964,1,0,0,0,1964,1962,1, + 0,0,0,1964,1965,1,0,0,0,1965,1990,1,0,0,0,1966,1967,3,479,239,0, + 1967,1968,3,393,196,0,1968,1971,3,409,204,0,1969,1972,3,515,257, + 0,1970,1972,3,475,237,0,1971,1969,1,0,0,0,1971,1970,1,0,0,0,1971, + 1972,1,0,0,0,1972,1974,1,0,0,0,1973,1975,3,457,228,0,1974,1973,1, + 0,0,0,1975,1976,1,0,0,0,1976,1974,1,0,0,0,1976,1977,1,0,0,0,1977, + 1990,1,0,0,0,1978,1979,3,393,196,0,1979,1982,3,409,204,0,1980,1983, + 3,515,257,0,1981,1983,3,475,237,0,1982,1980,1,0,0,0,1982,1981,1, + 0,0,0,1982,1983,1,0,0,0,1983,1985,1,0,0,0,1984,1986,3,457,228,0, + 1985,1984,1,0,0,0,1986,1987,1,0,0,0,1987,1985,1,0,0,0,1987,1988, + 1,0,0,0,1988,1990,1,0,0,0,1989,1913,1,0,0,0,1989,1934,1,0,0,0,1989, + 1948,1,0,0,0,1989,1966,1,0,0,0,1989,1978,1,0,0,0,1990,390,1,0,0, + 0,1991,1993,5,48,0,0,1992,1994,3,455,227,0,1993,1992,1,0,0,0,1994, + 1995,1,0,0,0,1995,1993,1,0,0,0,1995,1996,1,0,0,0,1996,392,1,0,0, + 0,1997,1999,3,457,228,0,1998,1997,1,0,0,0,1999,2000,1,0,0,0,2000, + 1998,1,0,0,0,2000,2001,1,0,0,0,2001,394,1,0,0,0,2002,2003,5,48,0, + 0,2003,2005,3,447,223,0,2004,2006,3,459,229,0,2005,2004,1,0,0,0, + 2006,2007,1,0,0,0,2007,2005,1,0,0,0,2007,2008,1,0,0,0,2008,396,1, + 0,0,0,2009,2017,3,521,260,0,2010,2016,8,2,0,0,2011,2016,3,385,192, + 0,2012,2013,3,521,260,0,2013,2014,3,521,260,0,2014,2016,1,0,0,0, + 2015,2010,1,0,0,0,2015,2011,1,0,0,0,2015,2012,1,0,0,0,2016,2019, + 1,0,0,0,2017,2015,1,0,0,0,2017,2018,1,0,0,0,2018,2020,1,0,0,0,2019, + 2017,1,0,0,0,2020,2021,3,521,260,0,2021,398,1,0,0,0,2022,2030,3, + 495,247,0,2023,2029,8,3,0,0,2024,2029,3,385,192,0,2025,2026,3,495, + 247,0,2026,2027,3,495,247,0,2027,2029,1,0,0,0,2028,2023,1,0,0,0, + 2028,2024,1,0,0,0,2028,2025,1,0,0,0,2029,2032,1,0,0,0,2030,2028, + 1,0,0,0,2030,2031,1,0,0,0,2031,2033,1,0,0,0,2032,2030,1,0,0,0,2033, + 2034,3,527,263,0,2034,400,1,0,0,0,2035,2036,7,4,0,0,2036,402,1,0, + 0,0,2037,2038,7,5,0,0,2038,404,1,0,0,0,2039,2040,7,6,0,0,2040,406, + 1,0,0,0,2041,2042,7,7,0,0,2042,408,1,0,0,0,2043,2044,7,8,0,0,2044, + 410,1,0,0,0,2045,2046,7,9,0,0,2046,412,1,0,0,0,2047,2048,7,10,0, + 0,2048,414,1,0,0,0,2049,2050,7,11,0,0,2050,416,1,0,0,0,2051,2052, + 7,12,0,0,2052,418,1,0,0,0,2053,2054,7,13,0,0,2054,420,1,0,0,0,2055, + 2056,7,14,0,0,2056,422,1,0,0,0,2057,2058,7,15,0,0,2058,424,1,0,0, + 0,2059,2060,7,16,0,0,2060,426,1,0,0,0,2061,2062,7,17,0,0,2062,428, + 1,0,0,0,2063,2064,7,18,0,0,2064,430,1,0,0,0,2065,2066,7,19,0,0,2066, + 432,1,0,0,0,2067,2068,7,20,0,0,2068,434,1,0,0,0,2069,2070,7,21,0, + 0,2070,436,1,0,0,0,2071,2072,7,22,0,0,2072,438,1,0,0,0,2073,2074, + 7,23,0,0,2074,440,1,0,0,0,2075,2076,7,24,0,0,2076,442,1,0,0,0,2077, + 2078,7,25,0,0,2078,444,1,0,0,0,2079,2080,7,26,0,0,2080,446,1,0,0, + 0,2081,2082,7,27,0,0,2082,448,1,0,0,0,2083,2084,7,28,0,0,2084,450, + 1,0,0,0,2085,2086,7,29,0,0,2086,452,1,0,0,0,2087,2088,7,30,0,0,2088, + 454,1,0,0,0,2089,2090,7,31,0,0,2090,456,1,0,0,0,2091,2092,7,32,0, + 0,2092,458,1,0,0,0,2093,2094,7,33,0,0,2094,460,1,0,0,0,2095,2096, + 5,45,0,0,2096,2097,5,62,0,0,2097,462,1,0,0,0,2098,2099,5,42,0,0, + 2099,464,1,0,0,0,2100,2101,5,96,0,0,2101,466,1,0,0,0,2102,2103,5, + 92,0,0,2103,468,1,0,0,0,2104,2105,5,58,0,0,2105,470,1,0,0,0,2106, + 2107,5,44,0,0,2107,472,1,0,0,0,2108,2109,5,124,0,0,2109,2110,5,124, + 0,0,2110,474,1,0,0,0,2111,2112,5,45,0,0,2112,476,1,0,0,0,2113,2114, + 5,36,0,0,2114,478,1,0,0,0,2115,2116,5,46,0,0,2116,480,1,0,0,0,2117, + 2118,5,61,0,0,2118,2119,5,61,0,0,2119,482,1,0,0,0,2120,2121,5,61, + 0,0,2121,484,1,0,0,0,2122,2123,5,62,0,0,2123,2124,5,61,0,0,2124, + 486,1,0,0,0,2125,2126,5,62,0,0,2126,488,1,0,0,0,2127,2128,5,35,0, + 0,2128,490,1,0,0,0,2129,2130,5,126,0,0,2130,2131,5,42,0,0,2131,492, + 1,0,0,0,2132,2133,5,61,0,0,2133,2134,5,126,0,0,2134,2135,5,42,0, + 0,2135,494,1,0,0,0,2136,2137,5,123,0,0,2137,496,1,0,0,0,2138,2139, + 5,91,0,0,2139,498,1,0,0,0,2140,2141,5,40,0,0,2141,500,1,0,0,0,2142, + 2143,5,60,0,0,2143,2144,5,61,0,0,2144,502,1,0,0,0,2145,2146,5,60, + 0,0,2146,504,1,0,0,0,2147,2148,5,33,0,0,2148,2152,5,61,0,0,2149, + 2150,5,60,0,0,2150,2152,5,62,0,0,2151,2147,1,0,0,0,2151,2149,1,0, + 0,0,2152,506,1,0,0,0,2153,2154,5,33,0,0,2154,2155,5,126,0,0,2155, + 2156,5,42,0,0,2156,508,1,0,0,0,2157,2158,5,33,0,0,2158,2159,5,126, + 0,0,2159,510,1,0,0,0,2160,2161,5,63,0,0,2161,2162,5,63,0,0,2162, + 512,1,0,0,0,2163,2164,5,37,0,0,2164,514,1,0,0,0,2165,2166,5,43,0, + 0,2166,516,1,0,0,0,2167,2168,5,63,0,0,2168,518,1,0,0,0,2169,2170, + 5,34,0,0,2170,520,1,0,0,0,2171,2172,5,39,0,0,2172,522,1,0,0,0,2173, + 2174,5,126,0,0,2174,524,1,0,0,0,2175,2176,5,61,0,0,2176,2177,5,126, + 0,0,2177,526,1,0,0,0,2178,2179,5,125,0,0,2179,528,1,0,0,0,2180,2181, + 5,93,0,0,2181,530,1,0,0,0,2182,2183,5,41,0,0,2183,532,1,0,0,0,2184, + 2185,5,59,0,0,2185,534,1,0,0,0,2186,2187,5,47,0,0,2187,536,1,0,0, + 0,2188,2189,5,95,0,0,2189,538,1,0,0,0,2190,2191,5,47,0,0,2191,2192, + 5,42,0,0,2192,2196,1,0,0,0,2193,2195,9,0,0,0,2194,2193,1,0,0,0,2195, + 2198,1,0,0,0,2196,2197,1,0,0,0,2196,2194,1,0,0,0,2197,2199,1,0,0, + 0,2198,2196,1,0,0,0,2199,2200,5,42,0,0,2200,2201,5,47,0,0,2201,2202, + 1,0,0,0,2202,2203,6,269,0,0,2203,540,1,0,0,0,2204,2205,5,45,0,0, + 2205,2206,5,45,0,0,2206,2210,1,0,0,0,2207,2209,8,34,0,0,2208,2207, + 1,0,0,0,2209,2212,1,0,0,0,2210,2208,1,0,0,0,2210,2211,1,0,0,0,2211, + 2214,1,0,0,0,2212,2210,1,0,0,0,2213,2215,7,35,0,0,2214,2213,1,0, + 0,0,2215,2216,1,0,0,0,2216,2217,6,270,0,0,2217,542,1,0,0,0,2218, + 2219,7,36,0,0,2219,2220,1,0,0,0,2220,2221,6,271,1,0,2221,544,1,0, + 0,0,39,0,607,1112,1826,1869,1874,1880,1882,1891,1893,1904,1906,1911, + 1918,1923,1927,1932,1937,1941,1946,1953,1959,1964,1971,1976,1982, + 1987,1989,1995,2000,2007,2015,2017,2028,2030,2151,2196,2210,2214, + 2,6,0,0,0,1,0 ] class HogQLLexer(Lexer): @@ -1106,30 +1118,36 @@ class HogQLLexer(Lexer): DOT = 210 EQ_DOUBLE = 211 EQ_SINGLE = 212 - GE = 213 + GT_EQ = 213 GT = 214 HASH = 215 - LBRACE = 216 - LBRACKET = 217 - LE = 218 - LPAREN = 219 - LT = 220 - NOT_EQ = 221 - NULLISH = 222 - PERCENT = 223 - PLUS = 224 - QUERY = 225 - QUOTE_DOUBLE = 226 - QUOTE_SINGLE = 227 - RBRACE = 228 - RBRACKET = 229 - RPAREN = 230 - SEMICOLON = 231 - SLASH = 232 - UNDERSCORE = 233 - MULTI_LINE_COMMENT = 234 - SINGLE_LINE_COMMENT = 235 - WHITESPACE = 236 + IREGEX_SINGLE = 216 + IREGEX_DOUBLE = 217 + LBRACE = 218 + LBRACKET = 219 + LPAREN = 220 + LT_EQ = 221 + LT = 222 + NOT_EQ = 223 + NOT_IREGEX = 224 + NOT_REGEX = 225 + NULLISH = 226 + PERCENT = 227 + PLUS = 228 + QUERY = 229 + QUOTE_DOUBLE = 230 + QUOTE_SINGLE = 231 + REGEX_SINGLE = 232 + REGEX_DOUBLE = 233 + RBRACE = 234 + RBRACKET = 235 + RPAREN = 236 + SEMICOLON = 237 + SLASH = 238 + UNDERSCORE = 239 + MULTI_LINE_COMMENT = 240 + SINGLE_LINE_COMMENT = 241 + WHITESPACE = 242 channelNames = [ u"DEFAULT_TOKEN_CHANNEL", u"HIDDEN" ] @@ -1138,8 +1156,9 @@ class HogQLLexer(Lexer): literalNames = [ "", "'false'", "'true'", "'->'", "'*'", "'`'", "'\\'", "':'", "','", "'||'", "'-'", "'$'", "'.'", "'=='", "'='", "'>='", "'>'", "'#'", - "'{'", "'['", "'<='", "'('", "'<'", "'??'", "'%'", "'+'", "'?'", - "'\"'", "'''", "'}'", "']'", "')'", "';'", "'/'", "'_'" ] + "'~*'", "'=~*'", "'{'", "'['", "'('", "'<='", "'<'", "'!~*'", + "'!~'", "'??'", "'%'", "'+'", "'?'", "'\"'", "'''", "'~'", "'=~'", + "'}'", "']'", "')'", "';'", "'/'", "'_'" ] symbolicNames = [ "", "ADD", "AFTER", "ALIAS", "ALL", "ALTER", "AND", "ANTI", "ANY", @@ -1175,11 +1194,12 @@ class HogQLLexer(Lexer): "DECIMAL_LITERAL", "HEXADECIMAL_LITERAL", "STRING_LITERAL", "PLACEHOLDER", "ARROW", "ASTERISK", "BACKQUOTE", "BACKSLASH", "COLON", "COMMA", "CONCAT", "DASH", "DOLLAR", "DOT", "EQ_DOUBLE", - "EQ_SINGLE", "GE", "GT", "HASH", "LBRACE", "LBRACKET", "LE", - "LPAREN", "LT", "NOT_EQ", "NULLISH", "PERCENT", "PLUS", "QUERY", - "QUOTE_DOUBLE", "QUOTE_SINGLE", "RBRACE", "RBRACKET", "RPAREN", - "SEMICOLON", "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", - "WHITESPACE" ] + "EQ_SINGLE", "GT_EQ", "GT", "HASH", "IREGEX_SINGLE", "IREGEX_DOUBLE", + "LBRACE", "LBRACKET", "LPAREN", "LT_EQ", "LT", "NOT_EQ", "NOT_IREGEX", + "NOT_REGEX", "NULLISH", "PERCENT", "PLUS", "QUERY", "QUOTE_DOUBLE", + "QUOTE_SINGLE", "REGEX_SINGLE", "REGEX_DOUBLE", "RBRACE", "RBRACKET", + "RPAREN", "SEMICOLON", "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", + "SINGLE_LINE_COMMENT", "WHITESPACE" ] ruleNames = [ "ADD", "AFTER", "ALIAS", "ALL", "ALTER", "AND", "ANTI", "ANY", "ARRAY", "AS", "ASCENDING", "ASOF", "AST", "ASYNC", @@ -1220,11 +1240,13 @@ class HogQLLexer(Lexer): "W", "X", "Y", "Z", "LETTER", "OCT_DIGIT", "DEC_DIGIT", "HEX_DIGIT", "ARROW", "ASTERISK", "BACKQUOTE", "BACKSLASH", "COLON", "COMMA", "CONCAT", "DASH", "DOLLAR", "DOT", "EQ_DOUBLE", - "EQ_SINGLE", "GE", "GT", "HASH", "LBRACE", "LBRACKET", - "LE", "LPAREN", "LT", "NOT_EQ", "NULLISH", "PERCENT", - "PLUS", "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", "RBRACE", - "RBRACKET", "RPAREN", "SEMICOLON", "SLASH", "UNDERSCORE", - "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", "WHITESPACE" ] + "EQ_SINGLE", "GT_EQ", "GT", "HASH", "IREGEX_SINGLE", "IREGEX_DOUBLE", + "LBRACE", "LBRACKET", "LPAREN", "LT_EQ", "LT", "NOT_EQ", + "NOT_IREGEX", "NOT_REGEX", "NULLISH", "PERCENT", "PLUS", + "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", "REGEX_SINGLE", + "REGEX_DOUBLE", "RBRACE", "RBRACKET", "RPAREN", "SEMICOLON", + "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", + "WHITESPACE" ] grammarFileName = "HogQLLexer.g4" diff --git a/posthog/hogql/grammar/HogQLLexer.tokens b/posthog/hogql/grammar/HogQLLexer.tokens index fb20b3b553f14..10fd925b09195 100644 --- a/posthog/hogql/grammar/HogQLLexer.tokens +++ b/posthog/hogql/grammar/HogQLLexer.tokens @@ -210,30 +210,36 @@ DOLLAR=209 DOT=210 EQ_DOUBLE=211 EQ_SINGLE=212 -GE=213 +GT_EQ=213 GT=214 HASH=215 -LBRACE=216 -LBRACKET=217 -LE=218 -LPAREN=219 -LT=220 -NOT_EQ=221 -NULLISH=222 -PERCENT=223 -PLUS=224 -QUERY=225 -QUOTE_DOUBLE=226 -QUOTE_SINGLE=227 -RBRACE=228 -RBRACKET=229 -RPAREN=230 -SEMICOLON=231 -SLASH=232 -UNDERSCORE=233 -MULTI_LINE_COMMENT=234 -SINGLE_LINE_COMMENT=235 -WHITESPACE=236 +IREGEX_SINGLE=216 +IREGEX_DOUBLE=217 +LBRACE=218 +LBRACKET=219 +LPAREN=220 +LT_EQ=221 +LT=222 +NOT_EQ=223 +NOT_IREGEX=224 +NOT_REGEX=225 +NULLISH=226 +PERCENT=227 +PLUS=228 +QUERY=229 +QUOTE_DOUBLE=230 +QUOTE_SINGLE=231 +REGEX_SINGLE=232 +REGEX_DOUBLE=233 +RBRACE=234 +RBRACKET=235 +RPAREN=236 +SEMICOLON=237 +SLASH=238 +UNDERSCORE=239 +MULTI_LINE_COMMENT=240 +SINGLE_LINE_COMMENT=241 +WHITESPACE=242 'false'=191 'true'=192 '->'=201 @@ -251,20 +257,26 @@ WHITESPACE=236 '>='=213 '>'=214 '#'=215 -'{'=216 -'['=217 -'<='=218 -'('=219 -'<'=220 -'??'=222 -'%'=223 -'+'=224 -'?'=225 -'"'=226 -'\''=227 -'}'=228 -']'=229 -')'=230 -';'=231 -'/'=232 -'_'=233 +'~*'=216 +'=~*'=217 +'{'=218 +'['=219 +'('=220 +'<='=221 +'<'=222 +'!~*'=224 +'!~'=225 +'??'=226 +'%'=227 +'+'=228 +'?'=229 +'"'=230 +'\''=231 +'~'=232 +'=~'=233 +'}'=234 +']'=235 +')'=236 +';'=237 +'/'=238 +'_'=239 diff --git a/posthog/hogql/grammar/HogQLParser.interp b/posthog/hogql/grammar/HogQLParser.interp index f049c50c4e3e4..6f30edf2ce7fc 100644 --- a/posthog/hogql/grammar/HogQLParser.interp +++ b/posthog/hogql/grammar/HogQLParser.interp @@ -215,18 +215,24 @@ null '>=' '>' '#' +'~*' +'=~*' '{' '[' -'<=' '(' +'<=' '<' null +'!~*' +'!~' '??' '%' '+' '?' '"' '\'' +'~' +'=~' '}' ']' ')' @@ -451,21 +457,27 @@ DOLLAR DOT EQ_DOUBLE EQ_SINGLE -GE +GT_EQ GT HASH +IREGEX_SINGLE +IREGEX_DOUBLE LBRACE LBRACKET -LE LPAREN +LT_EQ LT NOT_EQ +NOT_IREGEX +NOT_REGEX NULLISH PERCENT PLUS QUERY QUOTE_DOUBLE QUOTE_SINGLE +REGEX_SINGLE +REGEX_DOUBLE RBRACE RBRACKET RPAREN @@ -540,4 +552,4 @@ enumValue atn: -[4, 1, 236, 919, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 1, 0, 1, 0, 3, 0, 123, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 131, 8, 1, 10, 1, 12, 1, 134, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 141, 8, 2, 1, 3, 3, 3, 144, 8, 3, 1, 3, 1, 3, 3, 3, 148, 8, 3, 1, 3, 3, 3, 151, 8, 3, 1, 3, 1, 3, 3, 3, 155, 8, 3, 1, 3, 3, 3, 158, 8, 3, 1, 3, 3, 3, 161, 8, 3, 1, 3, 3, 3, 164, 8, 3, 1, 3, 3, 3, 167, 8, 3, 1, 3, 1, 3, 3, 3, 171, 8, 3, 1, 3, 1, 3, 3, 3, 175, 8, 3, 1, 3, 3, 3, 178, 8, 3, 1, 3, 3, 3, 181, 8, 3, 1, 3, 3, 3, 184, 8, 3, 1, 3, 1, 3, 3, 3, 188, 8, 3, 1, 3, 3, 3, 191, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 200, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 3, 7, 206, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 225, 8, 8, 10, 8, 12, 8, 228, 9, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 244, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 261, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 267, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 273, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 284, 8, 15, 3, 15, 286, 8, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 3, 18, 297, 8, 18, 1, 18, 3, 18, 300, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 306, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 314, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 320, 8, 18, 10, 18, 12, 18, 323, 9, 18, 1, 19, 3, 19, 326, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 331, 8, 19, 1, 19, 3, 19, 334, 8, 19, 1, 19, 3, 19, 337, 8, 19, 1, 19, 1, 19, 3, 19, 341, 8, 19, 1, 19, 1, 19, 3, 19, 345, 8, 19, 1, 19, 3, 19, 348, 8, 19, 3, 19, 350, 8, 19, 1, 19, 3, 19, 353, 8, 19, 1, 19, 1, 19, 3, 19, 357, 8, 19, 1, 19, 1, 19, 3, 19, 361, 8, 19, 1, 19, 3, 19, 364, 8, 19, 3, 19, 366, 8, 19, 3, 19, 368, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 373, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 384, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 390, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 395, 8, 23, 10, 23, 12, 23, 398, 9, 23, 1, 24, 1, 24, 3, 24, 402, 8, 24, 1, 24, 1, 24, 3, 24, 406, 8, 24, 1, 24, 1, 24, 3, 24, 410, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 415, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 420, 8, 26, 10, 26, 12, 26, 423, 9, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 430, 8, 28, 1, 28, 3, 28, 433, 8, 28, 1, 28, 3, 28, 436, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 455, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 469, 8, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 483, 8, 35, 10, 35, 12, 35, 486, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 495, 8, 35, 10, 35, 12, 35, 498, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 507, 8, 35, 10, 35, 12, 35, 510, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 517, 8, 35, 1, 35, 1, 35, 3, 35, 521, 8, 35, 1, 36, 1, 36, 1, 36, 5, 36, 526, 8, 36, 10, 36, 12, 36, 529, 9, 36, 1, 37, 1, 37, 1, 37, 3, 37, 534, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 4, 37, 541, 8, 37, 11, 37, 12, 37, 542, 1, 37, 1, 37, 3, 37, 547, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 578, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 595, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 607, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 617, 8, 37, 1, 37, 3, 37, 620, 8, 37, 1, 37, 1, 37, 3, 37, 624, 8, 37, 1, 37, 3, 37, 627, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 639, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 656, 8, 37, 1, 37, 1, 37, 3, 37, 660, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 666, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 673, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 685, 8, 37, 1, 37, 1, 37, 3, 37, 689, 8, 37, 1, 37, 3, 37, 692, 8, 37, 1, 37, 3, 37, 695, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 709, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 736, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 745, 8, 37, 5, 37, 747, 8, 37, 10, 37, 12, 37, 750, 9, 37, 1, 38, 1, 38, 1, 38, 5, 38, 755, 8, 38, 10, 38, 12, 38, 758, 9, 38, 1, 39, 1, 39, 3, 39, 762, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 768, 8, 40, 10, 40, 12, 40, 771, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 778, 8, 40, 10, 40, 12, 40, 781, 9, 40, 3, 40, 783, 8, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 791, 8, 41, 10, 41, 12, 41, 794, 9, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 806, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 812, 8, 43, 1, 43, 3, 43, 815, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 820, 8, 44, 10, 44, 12, 44, 823, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 832, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 838, 8, 45, 5, 45, 840, 8, 45, 10, 45, 12, 45, 843, 9, 45, 1, 46, 1, 46, 1, 46, 3, 46, 848, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 3, 47, 855, 8, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 5, 48, 862, 8, 48, 10, 48, 12, 48, 865, 9, 48, 1, 49, 1, 49, 1, 49, 3, 49, 870, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 880, 8, 51, 3, 51, 882, 8, 51, 1, 52, 3, 52, 885, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 893, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 898, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 908, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 913, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 0, 3, 36, 74, 90, 60, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 0, 16, 2, 0, 32, 32, 141, 141, 2, 0, 84, 84, 96, 96, 3, 0, 4, 4, 8, 8, 12, 12, 4, 0, 4, 4, 7, 8, 12, 12, 147, 147, 2, 0, 96, 96, 140, 140, 2, 0, 4, 4, 8, 8, 2, 0, 11, 11, 42, 43, 2, 0, 62, 62, 93, 93, 2, 0, 133, 133, 143, 143, 3, 0, 17, 17, 95, 95, 170, 170, 2, 0, 79, 79, 98, 98, 1, 0, 196, 197, 2, 0, 208, 208, 224, 224, 8, 0, 37, 37, 76, 76, 108, 108, 110, 110, 132, 132, 145, 145, 185, 185, 190, 190, 13, 0, 2, 24, 26, 36, 38, 75, 77, 81, 83, 107, 109, 109, 111, 112, 114, 115, 117, 130, 133, 144, 146, 184, 186, 189, 191, 192, 4, 0, 36, 36, 62, 62, 77, 77, 91, 91, 1033, 0, 122, 1, 0, 0, 0, 2, 126, 1, 0, 0, 0, 4, 140, 1, 0, 0, 0, 6, 143, 1, 0, 0, 0, 8, 192, 1, 0, 0, 0, 10, 195, 1, 0, 0, 0, 12, 201, 1, 0, 0, 0, 14, 205, 1, 0, 0, 0, 16, 211, 1, 0, 0, 0, 18, 229, 1, 0, 0, 0, 20, 232, 1, 0, 0, 0, 22, 235, 1, 0, 0, 0, 24, 245, 1, 0, 0, 0, 26, 248, 1, 0, 0, 0, 28, 252, 1, 0, 0, 0, 30, 285, 1, 0, 0, 0, 32, 287, 1, 0, 0, 0, 34, 290, 1, 0, 0, 0, 36, 305, 1, 0, 0, 0, 38, 367, 1, 0, 0, 0, 40, 372, 1, 0, 0, 0, 42, 383, 1, 0, 0, 0, 44, 385, 1, 0, 0, 0, 46, 391, 1, 0, 0, 0, 48, 399, 1, 0, 0, 0, 50, 411, 1, 0, 0, 0, 52, 416, 1, 0, 0, 0, 54, 424, 1, 0, 0, 0, 56, 429, 1, 0, 0, 0, 58, 437, 1, 0, 0, 0, 60, 441, 1, 0, 0, 0, 62, 445, 1, 0, 0, 0, 64, 454, 1, 0, 0, 0, 66, 468, 1, 0, 0, 0, 68, 470, 1, 0, 0, 0, 70, 520, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 659, 1, 0, 0, 0, 76, 751, 1, 0, 0, 0, 78, 761, 1, 0, 0, 0, 80, 782, 1, 0, 0, 0, 82, 787, 1, 0, 0, 0, 84, 805, 1, 0, 0, 0, 86, 814, 1, 0, 0, 0, 88, 816, 1, 0, 0, 0, 90, 831, 1, 0, 0, 0, 92, 844, 1, 0, 0, 0, 94, 854, 1, 0, 0, 0, 96, 858, 1, 0, 0, 0, 98, 869, 1, 0, 0, 0, 100, 871, 1, 0, 0, 0, 102, 881, 1, 0, 0, 0, 104, 884, 1, 0, 0, 0, 106, 897, 1, 0, 0, 0, 108, 899, 1, 0, 0, 0, 110, 901, 1, 0, 0, 0, 112, 903, 1, 0, 0, 0, 114, 907, 1, 0, 0, 0, 116, 912, 1, 0, 0, 0, 118, 914, 1, 0, 0, 0, 120, 123, 3, 2, 1, 0, 121, 123, 3, 6, 3, 0, 122, 120, 1, 0, 0, 0, 122, 121, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 124, 125, 5, 0, 0, 1, 125, 1, 1, 0, 0, 0, 126, 132, 3, 4, 2, 0, 127, 128, 5, 176, 0, 0, 128, 129, 5, 4, 0, 0, 129, 131, 3, 4, 2, 0, 130, 127, 1, 0, 0, 0, 131, 134, 1, 0, 0, 0, 132, 130, 1, 0, 0, 0, 132, 133, 1, 0, 0, 0, 133, 3, 1, 0, 0, 0, 134, 132, 1, 0, 0, 0, 135, 141, 3, 6, 3, 0, 136, 137, 5, 219, 0, 0, 137, 138, 3, 2, 1, 0, 138, 139, 5, 230, 0, 0, 139, 141, 1, 0, 0, 0, 140, 135, 1, 0, 0, 0, 140, 136, 1, 0, 0, 0, 141, 5, 1, 0, 0, 0, 142, 144, 3, 8, 4, 0, 143, 142, 1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 145, 1, 0, 0, 0, 145, 147, 5, 146, 0, 0, 146, 148, 5, 49, 0, 0, 147, 146, 1, 0, 0, 0, 147, 148, 1, 0, 0, 0, 148, 150, 1, 0, 0, 0, 149, 151, 3, 10, 5, 0, 150, 149, 1, 0, 0, 0, 150, 151, 1, 0, 0, 0, 151, 152, 1, 0, 0, 0, 152, 154, 3, 72, 36, 0, 153, 155, 3, 12, 6, 0, 154, 153, 1, 0, 0, 0, 154, 155, 1, 0, 0, 0, 155, 157, 1, 0, 0, 0, 156, 158, 3, 14, 7, 0, 157, 156, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 160, 1, 0, 0, 0, 159, 161, 3, 18, 9, 0, 160, 159, 1, 0, 0, 0, 160, 161, 1, 0, 0, 0, 161, 163, 1, 0, 0, 0, 162, 164, 3, 20, 10, 0, 163, 162, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 166, 1, 0, 0, 0, 165, 167, 3, 22, 11, 0, 166, 165, 1, 0, 0, 0, 166, 167, 1, 0, 0, 0, 167, 170, 1, 0, 0, 0, 168, 169, 5, 189, 0, 0, 169, 171, 7, 0, 0, 0, 170, 168, 1, 0, 0, 0, 170, 171, 1, 0, 0, 0, 171, 174, 1, 0, 0, 0, 172, 173, 5, 189, 0, 0, 173, 175, 5, 169, 0, 0, 174, 172, 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 177, 1, 0, 0, 0, 176, 178, 3, 24, 12, 0, 177, 176, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 180, 1, 0, 0, 0, 179, 181, 3, 16, 8, 0, 180, 179, 1, 0, 0, 0, 180, 181, 1, 0, 0, 0, 181, 183, 1, 0, 0, 0, 182, 184, 3, 26, 13, 0, 183, 182, 1, 0, 0, 0, 183, 184, 1, 0, 0, 0, 184, 187, 1, 0, 0, 0, 185, 188, 3, 30, 15, 0, 186, 188, 3, 32, 16, 0, 187, 185, 1, 0, 0, 0, 187, 186, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 190, 1, 0, 0, 0, 189, 191, 3, 34, 17, 0, 190, 189, 1, 0, 0, 0, 190, 191, 1, 0, 0, 0, 191, 7, 1, 0, 0, 0, 192, 193, 5, 189, 0, 0, 193, 194, 3, 82, 41, 0, 194, 9, 1, 0, 0, 0, 195, 196, 5, 168, 0, 0, 196, 199, 5, 197, 0, 0, 197, 198, 5, 189, 0, 0, 198, 200, 5, 164, 0, 0, 199, 197, 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 11, 1, 0, 0, 0, 201, 202, 5, 68, 0, 0, 202, 203, 3, 36, 18, 0, 203, 13, 1, 0, 0, 0, 204, 206, 7, 1, 0, 0, 205, 204, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 208, 5, 9, 0, 0, 208, 209, 5, 90, 0, 0, 209, 210, 3, 72, 36, 0, 210, 15, 1, 0, 0, 0, 211, 212, 5, 188, 0, 0, 212, 213, 3, 116, 58, 0, 213, 214, 5, 10, 0, 0, 214, 215, 5, 219, 0, 0, 215, 216, 3, 56, 28, 0, 216, 226, 5, 230, 0, 0, 217, 218, 5, 206, 0, 0, 218, 219, 3, 116, 58, 0, 219, 220, 5, 10, 0, 0, 220, 221, 5, 219, 0, 0, 221, 222, 3, 56, 28, 0, 222, 223, 5, 230, 0, 0, 223, 225, 1, 0, 0, 0, 224, 217, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 17, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 5, 129, 0, 0, 230, 231, 3, 74, 37, 0, 231, 19, 1, 0, 0, 0, 232, 233, 5, 187, 0, 0, 233, 234, 3, 74, 37, 0, 234, 21, 1, 0, 0, 0, 235, 236, 5, 73, 0, 0, 236, 243, 5, 18, 0, 0, 237, 238, 7, 0, 0, 0, 238, 239, 5, 219, 0, 0, 239, 240, 3, 72, 36, 0, 240, 241, 5, 230, 0, 0, 241, 244, 1, 0, 0, 0, 242, 244, 3, 72, 36, 0, 243, 237, 1, 0, 0, 0, 243, 242, 1, 0, 0, 0, 244, 23, 1, 0, 0, 0, 245, 246, 5, 74, 0, 0, 246, 247, 3, 74, 37, 0, 247, 25, 1, 0, 0, 0, 248, 249, 5, 122, 0, 0, 249, 250, 5, 18, 0, 0, 250, 251, 3, 46, 23, 0, 251, 27, 1, 0, 0, 0, 252, 253, 5, 122, 0, 0, 253, 254, 5, 18, 0, 0, 254, 255, 3, 72, 36, 0, 255, 29, 1, 0, 0, 0, 256, 257, 5, 99, 0, 0, 257, 260, 3, 74, 37, 0, 258, 259, 5, 206, 0, 0, 259, 261, 3, 74, 37, 0, 260, 258, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 266, 1, 0, 0, 0, 262, 263, 5, 189, 0, 0, 263, 267, 5, 164, 0, 0, 264, 265, 5, 18, 0, 0, 265, 267, 3, 72, 36, 0, 266, 262, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 286, 1, 0, 0, 0, 268, 269, 5, 99, 0, 0, 269, 272, 3, 74, 37, 0, 270, 271, 5, 189, 0, 0, 271, 273, 5, 164, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 5, 118, 0, 0, 275, 276, 3, 74, 37, 0, 276, 286, 1, 0, 0, 0, 277, 278, 5, 99, 0, 0, 278, 279, 3, 74, 37, 0, 279, 280, 5, 118, 0, 0, 280, 283, 3, 74, 37, 0, 281, 282, 5, 18, 0, 0, 282, 284, 3, 72, 36, 0, 283, 281, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 286, 1, 0, 0, 0, 285, 256, 1, 0, 0, 0, 285, 268, 1, 0, 0, 0, 285, 277, 1, 0, 0, 0, 286, 31, 1, 0, 0, 0, 287, 288, 5, 118, 0, 0, 288, 289, 3, 74, 37, 0, 289, 33, 1, 0, 0, 0, 290, 291, 5, 150, 0, 0, 291, 292, 3, 52, 26, 0, 292, 35, 1, 0, 0, 0, 293, 294, 6, 18, -1, 0, 294, 296, 3, 90, 45, 0, 295, 297, 5, 61, 0, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 44, 22, 0, 299, 298, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 306, 1, 0, 0, 0, 301, 302, 5, 219, 0, 0, 302, 303, 3, 36, 18, 0, 303, 304, 5, 230, 0, 0, 304, 306, 1, 0, 0, 0, 305, 293, 1, 0, 0, 0, 305, 301, 1, 0, 0, 0, 306, 321, 1, 0, 0, 0, 307, 308, 10, 3, 0, 0, 308, 309, 3, 40, 20, 0, 309, 310, 3, 36, 18, 4, 310, 320, 1, 0, 0, 0, 311, 313, 10, 4, 0, 0, 312, 314, 3, 38, 19, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 5, 90, 0, 0, 316, 317, 3, 36, 18, 0, 317, 318, 3, 42, 21, 0, 318, 320, 1, 0, 0, 0, 319, 307, 1, 0, 0, 0, 319, 311, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 37, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 326, 7, 2, 0, 0, 325, 324, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 334, 5, 84, 0, 0, 328, 330, 5, 84, 0, 0, 329, 331, 7, 2, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 334, 7, 2, 0, 0, 333, 325, 1, 0, 0, 0, 333, 328, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 368, 1, 0, 0, 0, 335, 337, 7, 3, 0, 0, 336, 335, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 7, 4, 0, 0, 339, 341, 5, 123, 0, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 350, 1, 0, 0, 0, 342, 344, 7, 4, 0, 0, 343, 345, 5, 123, 0, 0, 344, 343, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 347, 1, 0, 0, 0, 346, 348, 7, 3, 0, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 350, 1, 0, 0, 0, 349, 336, 1, 0, 0, 0, 349, 342, 1, 0, 0, 0, 350, 368, 1, 0, 0, 0, 351, 353, 7, 5, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 356, 5, 69, 0, 0, 355, 357, 5, 123, 0, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 366, 1, 0, 0, 0, 358, 360, 5, 69, 0, 0, 359, 361, 5, 123, 0, 0, 360, 359, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 1, 0, 0, 0, 362, 364, 7, 5, 0, 0, 363, 362, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 352, 1, 0, 0, 0, 365, 358, 1, 0, 0, 0, 366, 368, 1, 0, 0, 0, 367, 333, 1, 0, 0, 0, 367, 349, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 39, 1, 0, 0, 0, 369, 370, 5, 31, 0, 0, 370, 373, 5, 90, 0, 0, 371, 373, 5, 206, 0, 0, 372, 369, 1, 0, 0, 0, 372, 371, 1, 0, 0, 0, 373, 41, 1, 0, 0, 0, 374, 375, 5, 119, 0, 0, 375, 384, 3, 72, 36, 0, 376, 377, 5, 179, 0, 0, 377, 378, 5, 219, 0, 0, 378, 379, 3, 72, 36, 0, 379, 380, 5, 230, 0, 0, 380, 384, 1, 0, 0, 0, 381, 382, 5, 179, 0, 0, 382, 384, 3, 72, 36, 0, 383, 374, 1, 0, 0, 0, 383, 376, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 43, 1, 0, 0, 0, 385, 386, 5, 144, 0, 0, 386, 389, 3, 50, 25, 0, 387, 388, 5, 118, 0, 0, 388, 390, 3, 50, 25, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 45, 1, 0, 0, 0, 391, 396, 3, 48, 24, 0, 392, 393, 5, 206, 0, 0, 393, 395, 3, 48, 24, 0, 394, 392, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 47, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 401, 3, 74, 37, 0, 400, 402, 7, 6, 0, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 404, 5, 117, 0, 0, 404, 406, 7, 7, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 408, 5, 26, 0, 0, 408, 410, 5, 199, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 49, 1, 0, 0, 0, 411, 414, 3, 104, 52, 0, 412, 413, 5, 232, 0, 0, 413, 415, 3, 104, 52, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 51, 1, 0, 0, 0, 416, 421, 3, 54, 27, 0, 417, 418, 5, 206, 0, 0, 418, 420, 3, 54, 27, 0, 419, 417, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 53, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 425, 3, 116, 58, 0, 425, 426, 5, 212, 0, 0, 426, 427, 3, 106, 53, 0, 427, 55, 1, 0, 0, 0, 428, 430, 3, 58, 29, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 432, 1, 0, 0, 0, 431, 433, 3, 60, 30, 0, 432, 431, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 435, 1, 0, 0, 0, 434, 436, 3, 62, 31, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 57, 1, 0, 0, 0, 437, 438, 5, 126, 0, 0, 438, 439, 5, 18, 0, 0, 439, 440, 3, 72, 36, 0, 440, 59, 1, 0, 0, 0, 441, 442, 5, 122, 0, 0, 442, 443, 5, 18, 0, 0, 443, 444, 3, 46, 23, 0, 444, 61, 1, 0, 0, 0, 445, 446, 7, 8, 0, 0, 446, 447, 3, 64, 32, 0, 447, 63, 1, 0, 0, 0, 448, 455, 3, 66, 33, 0, 449, 450, 5, 16, 0, 0, 450, 451, 3, 66, 33, 0, 451, 452, 5, 6, 0, 0, 452, 453, 3, 66, 33, 0, 453, 455, 1, 0, 0, 0, 454, 448, 1, 0, 0, 0, 454, 449, 1, 0, 0, 0, 455, 65, 1, 0, 0, 0, 456, 457, 5, 33, 0, 0, 457, 469, 5, 142, 0, 0, 458, 459, 5, 175, 0, 0, 459, 469, 5, 128, 0, 0, 460, 461, 5, 175, 0, 0, 461, 469, 5, 64, 0, 0, 462, 463, 3, 104, 52, 0, 463, 464, 5, 128, 0, 0, 464, 469, 1, 0, 0, 0, 465, 466, 3, 104, 52, 0, 466, 467, 5, 64, 0, 0, 467, 469, 1, 0, 0, 0, 468, 456, 1, 0, 0, 0, 468, 458, 1, 0, 0, 0, 468, 460, 1, 0, 0, 0, 468, 462, 1, 0, 0, 0, 468, 465, 1, 0, 0, 0, 469, 67, 1, 0, 0, 0, 470, 471, 3, 74, 37, 0, 471, 472, 5, 0, 0, 1, 472, 69, 1, 0, 0, 0, 473, 521, 3, 116, 58, 0, 474, 475, 3, 116, 58, 0, 475, 476, 5, 219, 0, 0, 476, 477, 3, 116, 58, 0, 477, 484, 3, 70, 35, 0, 478, 479, 5, 206, 0, 0, 479, 480, 3, 116, 58, 0, 480, 481, 3, 70, 35, 0, 481, 483, 1, 0, 0, 0, 482, 478, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 487, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 488, 5, 230, 0, 0, 488, 521, 1, 0, 0, 0, 489, 490, 3, 116, 58, 0, 490, 491, 5, 219, 0, 0, 491, 496, 3, 118, 59, 0, 492, 493, 5, 206, 0, 0, 493, 495, 3, 118, 59, 0, 494, 492, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 499, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 5, 230, 0, 0, 500, 521, 1, 0, 0, 0, 501, 502, 3, 116, 58, 0, 502, 503, 5, 219, 0, 0, 503, 508, 3, 70, 35, 0, 504, 505, 5, 206, 0, 0, 505, 507, 3, 70, 35, 0, 506, 504, 1, 0, 0, 0, 507, 510, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 511, 512, 5, 230, 0, 0, 512, 521, 1, 0, 0, 0, 513, 514, 3, 116, 58, 0, 514, 516, 5, 219, 0, 0, 515, 517, 3, 72, 36, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 5, 230, 0, 0, 519, 521, 1, 0, 0, 0, 520, 473, 1, 0, 0, 0, 520, 474, 1, 0, 0, 0, 520, 489, 1, 0, 0, 0, 520, 501, 1, 0, 0, 0, 520, 513, 1, 0, 0, 0, 521, 71, 1, 0, 0, 0, 522, 527, 3, 74, 37, 0, 523, 524, 5, 206, 0, 0, 524, 526, 3, 74, 37, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 73, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 531, 6, 37, -1, 0, 531, 533, 5, 19, 0, 0, 532, 534, 3, 74, 37, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 540, 1, 0, 0, 0, 535, 536, 5, 186, 0, 0, 536, 537, 3, 74, 37, 0, 537, 538, 5, 163, 0, 0, 538, 539, 3, 74, 37, 0, 539, 541, 1, 0, 0, 0, 540, 535, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 545, 5, 52, 0, 0, 545, 547, 3, 74, 37, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 53, 0, 0, 549, 660, 1, 0, 0, 0, 550, 551, 5, 20, 0, 0, 551, 552, 5, 219, 0, 0, 552, 553, 3, 74, 37, 0, 553, 554, 5, 10, 0, 0, 554, 555, 3, 70, 35, 0, 555, 556, 5, 230, 0, 0, 556, 660, 1, 0, 0, 0, 557, 558, 5, 36, 0, 0, 558, 660, 5, 199, 0, 0, 559, 560, 5, 59, 0, 0, 560, 561, 5, 219, 0, 0, 561, 562, 3, 108, 54, 0, 562, 563, 5, 68, 0, 0, 563, 564, 3, 74, 37, 0, 564, 565, 5, 230, 0, 0, 565, 660, 1, 0, 0, 0, 566, 567, 5, 86, 0, 0, 567, 568, 3, 74, 37, 0, 568, 569, 3, 108, 54, 0, 569, 660, 1, 0, 0, 0, 570, 571, 5, 155, 0, 0, 571, 572, 5, 219, 0, 0, 572, 573, 3, 74, 37, 0, 573, 574, 5, 68, 0, 0, 574, 577, 3, 74, 37, 0, 575, 576, 5, 65, 0, 0, 576, 578, 3, 74, 37, 0, 577, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 5, 230, 0, 0, 580, 660, 1, 0, 0, 0, 581, 582, 5, 166, 0, 0, 582, 660, 5, 199, 0, 0, 583, 584, 5, 171, 0, 0, 584, 585, 5, 219, 0, 0, 585, 586, 7, 9, 0, 0, 586, 587, 5, 199, 0, 0, 587, 588, 5, 68, 0, 0, 588, 589, 3, 74, 37, 0, 589, 590, 5, 230, 0, 0, 590, 660, 1, 0, 0, 0, 591, 592, 3, 116, 58, 0, 592, 594, 5, 219, 0, 0, 593, 595, 3, 72, 36, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 230, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 125, 0, 0, 599, 600, 5, 219, 0, 0, 600, 601, 3, 56, 28, 0, 601, 602, 5, 230, 0, 0, 602, 660, 1, 0, 0, 0, 603, 604, 3, 116, 58, 0, 604, 606, 5, 219, 0, 0, 605, 607, 3, 72, 36, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 5, 230, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 125, 0, 0, 611, 612, 3, 116, 58, 0, 612, 660, 1, 0, 0, 0, 613, 619, 3, 116, 58, 0, 614, 616, 5, 219, 0, 0, 615, 617, 3, 72, 36, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 5, 230, 0, 0, 619, 614, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 5, 219, 0, 0, 622, 624, 5, 49, 0, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 627, 3, 76, 38, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 230, 0, 0, 629, 660, 1, 0, 0, 0, 630, 660, 3, 106, 53, 0, 631, 632, 5, 208, 0, 0, 632, 660, 3, 74, 37, 18, 633, 634, 5, 115, 0, 0, 634, 660, 3, 74, 37, 12, 635, 636, 3, 94, 47, 0, 636, 637, 5, 210, 0, 0, 637, 639, 1, 0, 0, 0, 638, 635, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 660, 5, 202, 0, 0, 641, 642, 5, 219, 0, 0, 642, 643, 3, 2, 1, 0, 643, 644, 5, 230, 0, 0, 644, 660, 1, 0, 0, 0, 645, 646, 5, 219, 0, 0, 646, 647, 3, 74, 37, 0, 647, 648, 5, 230, 0, 0, 648, 660, 1, 0, 0, 0, 649, 650, 5, 219, 0, 0, 650, 651, 3, 72, 36, 0, 651, 652, 5, 230, 0, 0, 652, 660, 1, 0, 0, 0, 653, 655, 5, 217, 0, 0, 654, 656, 3, 72, 36, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 5, 229, 0, 0, 658, 660, 3, 86, 43, 0, 659, 530, 1, 0, 0, 0, 659, 550, 1, 0, 0, 0, 659, 557, 1, 0, 0, 0, 659, 559, 1, 0, 0, 0, 659, 566, 1, 0, 0, 0, 659, 570, 1, 0, 0, 0, 659, 581, 1, 0, 0, 0, 659, 583, 1, 0, 0, 0, 659, 591, 1, 0, 0, 0, 659, 603, 1, 0, 0, 0, 659, 613, 1, 0, 0, 0, 659, 630, 1, 0, 0, 0, 659, 631, 1, 0, 0, 0, 659, 633, 1, 0, 0, 0, 659, 638, 1, 0, 0, 0, 659, 641, 1, 0, 0, 0, 659, 645, 1, 0, 0, 0, 659, 649, 1, 0, 0, 0, 659, 653, 1, 0, 0, 0, 659, 658, 1, 0, 0, 0, 660, 748, 1, 0, 0, 0, 661, 665, 10, 17, 0, 0, 662, 666, 5, 202, 0, 0, 663, 666, 5, 232, 0, 0, 664, 666, 5, 223, 0, 0, 665, 662, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 747, 3, 74, 37, 18, 668, 672, 10, 16, 0, 0, 669, 673, 5, 224, 0, 0, 670, 673, 5, 208, 0, 0, 671, 673, 5, 207, 0, 0, 672, 669, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 747, 3, 74, 37, 17, 675, 694, 10, 15, 0, 0, 676, 695, 5, 211, 0, 0, 677, 695, 5, 212, 0, 0, 678, 695, 5, 221, 0, 0, 679, 695, 5, 218, 0, 0, 680, 695, 5, 213, 0, 0, 681, 695, 5, 220, 0, 0, 682, 695, 5, 214, 0, 0, 683, 685, 5, 115, 0, 0, 684, 683, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 5, 80, 0, 0, 687, 689, 5, 25, 0, 0, 688, 687, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 695, 1, 0, 0, 0, 690, 692, 5, 115, 0, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 695, 7, 10, 0, 0, 694, 676, 1, 0, 0, 0, 694, 677, 1, 0, 0, 0, 694, 678, 1, 0, 0, 0, 694, 679, 1, 0, 0, 0, 694, 680, 1, 0, 0, 0, 694, 681, 1, 0, 0, 0, 694, 682, 1, 0, 0, 0, 694, 684, 1, 0, 0, 0, 694, 691, 1, 0, 0, 0, 695, 696, 1, 0, 0, 0, 696, 747, 3, 74, 37, 16, 697, 698, 10, 13, 0, 0, 698, 699, 5, 222, 0, 0, 699, 747, 3, 74, 37, 14, 700, 701, 10, 11, 0, 0, 701, 702, 5, 6, 0, 0, 702, 747, 3, 74, 37, 12, 703, 704, 10, 10, 0, 0, 704, 705, 5, 121, 0, 0, 705, 747, 3, 74, 37, 11, 706, 708, 10, 9, 0, 0, 707, 709, 5, 115, 0, 0, 708, 707, 1, 0, 0, 0, 708, 709, 1, 0, 0, 0, 709, 710, 1, 0, 0, 0, 710, 711, 5, 16, 0, 0, 711, 712, 3, 74, 37, 0, 712, 713, 5, 6, 0, 0, 713, 714, 3, 74, 37, 10, 714, 747, 1, 0, 0, 0, 715, 716, 10, 8, 0, 0, 716, 717, 5, 225, 0, 0, 717, 718, 3, 74, 37, 0, 718, 719, 5, 205, 0, 0, 719, 720, 3, 74, 37, 8, 720, 747, 1, 0, 0, 0, 721, 722, 10, 21, 0, 0, 722, 723, 5, 217, 0, 0, 723, 724, 3, 74, 37, 0, 724, 725, 5, 229, 0, 0, 725, 747, 1, 0, 0, 0, 726, 727, 10, 20, 0, 0, 727, 728, 5, 210, 0, 0, 728, 747, 5, 197, 0, 0, 729, 730, 10, 19, 0, 0, 730, 731, 5, 210, 0, 0, 731, 747, 3, 116, 58, 0, 732, 733, 10, 14, 0, 0, 733, 735, 5, 88, 0, 0, 734, 736, 5, 115, 0, 0, 735, 734, 1, 0, 0, 0, 735, 736, 1, 0, 0, 0, 736, 737, 1, 0, 0, 0, 737, 747, 5, 116, 0, 0, 738, 744, 10, 7, 0, 0, 739, 745, 3, 114, 57, 0, 740, 741, 5, 10, 0, 0, 741, 745, 3, 116, 58, 0, 742, 743, 5, 10, 0, 0, 743, 745, 5, 199, 0, 0, 744, 739, 1, 0, 0, 0, 744, 740, 1, 0, 0, 0, 744, 742, 1, 0, 0, 0, 745, 747, 1, 0, 0, 0, 746, 661, 1, 0, 0, 0, 746, 668, 1, 0, 0, 0, 746, 675, 1, 0, 0, 0, 746, 697, 1, 0, 0, 0, 746, 700, 1, 0, 0, 0, 746, 703, 1, 0, 0, 0, 746, 706, 1, 0, 0, 0, 746, 715, 1, 0, 0, 0, 746, 721, 1, 0, 0, 0, 746, 726, 1, 0, 0, 0, 746, 729, 1, 0, 0, 0, 746, 732, 1, 0, 0, 0, 746, 738, 1, 0, 0, 0, 747, 750, 1, 0, 0, 0, 748, 746, 1, 0, 0, 0, 748, 749, 1, 0, 0, 0, 749, 75, 1, 0, 0, 0, 750, 748, 1, 0, 0, 0, 751, 756, 3, 78, 39, 0, 752, 753, 5, 206, 0, 0, 753, 755, 3, 78, 39, 0, 754, 752, 1, 0, 0, 0, 755, 758, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 756, 757, 1, 0, 0, 0, 757, 77, 1, 0, 0, 0, 758, 756, 1, 0, 0, 0, 759, 762, 3, 80, 40, 0, 760, 762, 3, 74, 37, 0, 761, 759, 1, 0, 0, 0, 761, 760, 1, 0, 0, 0, 762, 79, 1, 0, 0, 0, 763, 764, 5, 219, 0, 0, 764, 769, 3, 116, 58, 0, 765, 766, 5, 206, 0, 0, 766, 768, 3, 116, 58, 0, 767, 765, 1, 0, 0, 0, 768, 771, 1, 0, 0, 0, 769, 767, 1, 0, 0, 0, 769, 770, 1, 0, 0, 0, 770, 772, 1, 0, 0, 0, 771, 769, 1, 0, 0, 0, 772, 773, 5, 230, 0, 0, 773, 783, 1, 0, 0, 0, 774, 779, 3, 116, 58, 0, 775, 776, 5, 206, 0, 0, 776, 778, 3, 116, 58, 0, 777, 775, 1, 0, 0, 0, 778, 781, 1, 0, 0, 0, 779, 777, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 783, 1, 0, 0, 0, 781, 779, 1, 0, 0, 0, 782, 763, 1, 0, 0, 0, 782, 774, 1, 0, 0, 0, 783, 784, 1, 0, 0, 0, 784, 785, 5, 201, 0, 0, 785, 786, 3, 74, 37, 0, 786, 81, 1, 0, 0, 0, 787, 792, 3, 84, 42, 0, 788, 789, 5, 206, 0, 0, 789, 791, 3, 84, 42, 0, 790, 788, 1, 0, 0, 0, 791, 794, 1, 0, 0, 0, 792, 790, 1, 0, 0, 0, 792, 793, 1, 0, 0, 0, 793, 83, 1, 0, 0, 0, 794, 792, 1, 0, 0, 0, 795, 796, 3, 116, 58, 0, 796, 797, 5, 10, 0, 0, 797, 798, 5, 219, 0, 0, 798, 799, 3, 2, 1, 0, 799, 800, 5, 230, 0, 0, 800, 806, 1, 0, 0, 0, 801, 802, 3, 74, 37, 0, 802, 803, 5, 10, 0, 0, 803, 804, 3, 116, 58, 0, 804, 806, 1, 0, 0, 0, 805, 795, 1, 0, 0, 0, 805, 801, 1, 0, 0, 0, 806, 85, 1, 0, 0, 0, 807, 815, 5, 200, 0, 0, 808, 809, 3, 94, 47, 0, 809, 810, 5, 210, 0, 0, 810, 812, 1, 0, 0, 0, 811, 808, 1, 0, 0, 0, 811, 812, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 3, 88, 44, 0, 814, 807, 1, 0, 0, 0, 814, 811, 1, 0, 0, 0, 815, 87, 1, 0, 0, 0, 816, 821, 3, 116, 58, 0, 817, 818, 5, 210, 0, 0, 818, 820, 3, 116, 58, 0, 819, 817, 1, 0, 0, 0, 820, 823, 1, 0, 0, 0, 821, 819, 1, 0, 0, 0, 821, 822, 1, 0, 0, 0, 822, 89, 1, 0, 0, 0, 823, 821, 1, 0, 0, 0, 824, 825, 6, 45, -1, 0, 825, 832, 3, 94, 47, 0, 826, 832, 3, 92, 46, 0, 827, 828, 5, 219, 0, 0, 828, 829, 3, 2, 1, 0, 829, 830, 5, 230, 0, 0, 830, 832, 1, 0, 0, 0, 831, 824, 1, 0, 0, 0, 831, 826, 1, 0, 0, 0, 831, 827, 1, 0, 0, 0, 832, 841, 1, 0, 0, 0, 833, 837, 10, 1, 0, 0, 834, 838, 3, 114, 57, 0, 835, 836, 5, 10, 0, 0, 836, 838, 3, 116, 58, 0, 837, 834, 1, 0, 0, 0, 837, 835, 1, 0, 0, 0, 838, 840, 1, 0, 0, 0, 839, 833, 1, 0, 0, 0, 840, 843, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 841, 842, 1, 0, 0, 0, 842, 91, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 844, 845, 3, 116, 58, 0, 845, 847, 5, 219, 0, 0, 846, 848, 3, 96, 48, 0, 847, 846, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 849, 1, 0, 0, 0, 849, 850, 5, 230, 0, 0, 850, 93, 1, 0, 0, 0, 851, 852, 3, 100, 50, 0, 852, 853, 5, 210, 0, 0, 853, 855, 1, 0, 0, 0, 854, 851, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 1, 0, 0, 0, 856, 857, 3, 116, 58, 0, 857, 95, 1, 0, 0, 0, 858, 863, 3, 98, 49, 0, 859, 860, 5, 206, 0, 0, 860, 862, 3, 98, 49, 0, 861, 859, 1, 0, 0, 0, 862, 865, 1, 0, 0, 0, 863, 861, 1, 0, 0, 0, 863, 864, 1, 0, 0, 0, 864, 97, 1, 0, 0, 0, 865, 863, 1, 0, 0, 0, 866, 870, 3, 88, 44, 0, 867, 870, 3, 92, 46, 0, 868, 870, 3, 106, 53, 0, 869, 866, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 869, 868, 1, 0, 0, 0, 870, 99, 1, 0, 0, 0, 871, 872, 3, 116, 58, 0, 872, 101, 1, 0, 0, 0, 873, 882, 5, 195, 0, 0, 874, 875, 5, 210, 0, 0, 875, 882, 7, 11, 0, 0, 876, 877, 5, 197, 0, 0, 877, 879, 5, 210, 0, 0, 878, 880, 7, 11, 0, 0, 879, 878, 1, 0, 0, 0, 879, 880, 1, 0, 0, 0, 880, 882, 1, 0, 0, 0, 881, 873, 1, 0, 0, 0, 881, 874, 1, 0, 0, 0, 881, 876, 1, 0, 0, 0, 882, 103, 1, 0, 0, 0, 883, 885, 7, 12, 0, 0, 884, 883, 1, 0, 0, 0, 884, 885, 1, 0, 0, 0, 885, 892, 1, 0, 0, 0, 886, 893, 3, 102, 51, 0, 887, 893, 5, 196, 0, 0, 888, 893, 5, 197, 0, 0, 889, 893, 5, 198, 0, 0, 890, 893, 5, 82, 0, 0, 891, 893, 5, 113, 0, 0, 892, 886, 1, 0, 0, 0, 892, 887, 1, 0, 0, 0, 892, 888, 1, 0, 0, 0, 892, 889, 1, 0, 0, 0, 892, 890, 1, 0, 0, 0, 892, 891, 1, 0, 0, 0, 893, 105, 1, 0, 0, 0, 894, 898, 3, 104, 52, 0, 895, 898, 5, 199, 0, 0, 896, 898, 5, 116, 0, 0, 897, 894, 1, 0, 0, 0, 897, 895, 1, 0, 0, 0, 897, 896, 1, 0, 0, 0, 898, 107, 1, 0, 0, 0, 899, 900, 7, 13, 0, 0, 900, 109, 1, 0, 0, 0, 901, 902, 7, 14, 0, 0, 902, 111, 1, 0, 0, 0, 903, 904, 7, 15, 0, 0, 904, 113, 1, 0, 0, 0, 905, 908, 5, 194, 0, 0, 906, 908, 3, 112, 56, 0, 907, 905, 1, 0, 0, 0, 907, 906, 1, 0, 0, 0, 908, 115, 1, 0, 0, 0, 909, 913, 5, 194, 0, 0, 910, 913, 3, 108, 54, 0, 911, 913, 3, 110, 55, 0, 912, 909, 1, 0, 0, 0, 912, 910, 1, 0, 0, 0, 912, 911, 1, 0, 0, 0, 913, 117, 1, 0, 0, 0, 914, 915, 5, 199, 0, 0, 915, 916, 5, 212, 0, 0, 916, 917, 3, 104, 52, 0, 917, 119, 1, 0, 0, 0, 115, 122, 132, 140, 143, 147, 150, 154, 157, 160, 163, 166, 170, 174, 177, 180, 183, 187, 190, 199, 205, 226, 243, 260, 266, 272, 283, 285, 296, 299, 305, 313, 319, 321, 325, 330, 333, 336, 340, 344, 347, 349, 352, 356, 360, 363, 365, 367, 372, 383, 389, 396, 401, 405, 409, 414, 421, 429, 432, 435, 454, 468, 484, 496, 508, 516, 520, 527, 533, 542, 546, 577, 594, 606, 616, 619, 623, 626, 638, 655, 659, 665, 672, 684, 688, 691, 694, 708, 735, 744, 746, 748, 756, 761, 769, 779, 782, 792, 805, 811, 814, 821, 831, 837, 841, 847, 854, 863, 869, 879, 881, 884, 892, 897, 907, 912] \ No newline at end of file +[4, 1, 242, 925, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 1, 0, 1, 0, 3, 0, 123, 8, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 5, 1, 131, 8, 1, 10, 1, 12, 1, 134, 9, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 141, 8, 2, 1, 3, 3, 3, 144, 8, 3, 1, 3, 1, 3, 3, 3, 148, 8, 3, 1, 3, 3, 3, 151, 8, 3, 1, 3, 1, 3, 3, 3, 155, 8, 3, 1, 3, 3, 3, 158, 8, 3, 1, 3, 3, 3, 161, 8, 3, 1, 3, 3, 3, 164, 8, 3, 1, 3, 3, 3, 167, 8, 3, 1, 3, 1, 3, 3, 3, 171, 8, 3, 1, 3, 1, 3, 3, 3, 175, 8, 3, 1, 3, 3, 3, 178, 8, 3, 1, 3, 3, 3, 181, 8, 3, 1, 3, 3, 3, 184, 8, 3, 1, 3, 1, 3, 3, 3, 188, 8, 3, 1, 3, 3, 3, 191, 8, 3, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 200, 8, 5, 1, 6, 1, 6, 1, 6, 1, 7, 3, 7, 206, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 1, 8, 5, 8, 225, 8, 8, 10, 8, 12, 8, 228, 9, 8, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 244, 8, 11, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 261, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 267, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 273, 8, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 284, 8, 15, 3, 15, 286, 8, 15, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 3, 18, 297, 8, 18, 1, 18, 3, 18, 300, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 306, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 314, 8, 18, 1, 18, 1, 18, 1, 18, 1, 18, 5, 18, 320, 8, 18, 10, 18, 12, 18, 323, 9, 18, 1, 19, 3, 19, 326, 8, 19, 1, 19, 1, 19, 1, 19, 3, 19, 331, 8, 19, 1, 19, 3, 19, 334, 8, 19, 1, 19, 3, 19, 337, 8, 19, 1, 19, 1, 19, 3, 19, 341, 8, 19, 1, 19, 1, 19, 3, 19, 345, 8, 19, 1, 19, 3, 19, 348, 8, 19, 3, 19, 350, 8, 19, 1, 19, 3, 19, 353, 8, 19, 1, 19, 1, 19, 3, 19, 357, 8, 19, 1, 19, 1, 19, 3, 19, 361, 8, 19, 1, 19, 3, 19, 364, 8, 19, 3, 19, 366, 8, 19, 3, 19, 368, 8, 19, 1, 20, 1, 20, 1, 20, 3, 20, 373, 8, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 384, 8, 21, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 390, 8, 22, 1, 23, 1, 23, 1, 23, 5, 23, 395, 8, 23, 10, 23, 12, 23, 398, 9, 23, 1, 24, 1, 24, 3, 24, 402, 8, 24, 1, 24, 1, 24, 3, 24, 406, 8, 24, 1, 24, 1, 24, 3, 24, 410, 8, 24, 1, 25, 1, 25, 1, 25, 3, 25, 415, 8, 25, 1, 26, 1, 26, 1, 26, 5, 26, 420, 8, 26, 10, 26, 12, 26, 423, 9, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 3, 28, 430, 8, 28, 1, 28, 3, 28, 433, 8, 28, 1, 28, 3, 28, 436, 8, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 3, 32, 455, 8, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 3, 33, 469, 8, 33, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 483, 8, 35, 10, 35, 12, 35, 486, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 495, 8, 35, 10, 35, 12, 35, 498, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 5, 35, 507, 8, 35, 10, 35, 12, 35, 510, 9, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 517, 8, 35, 1, 35, 1, 35, 3, 35, 521, 8, 35, 1, 36, 1, 36, 1, 36, 5, 36, 526, 8, 36, 10, 36, 12, 36, 529, 9, 36, 1, 37, 1, 37, 1, 37, 3, 37, 534, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 4, 37, 541, 8, 37, 11, 37, 12, 37, 542, 1, 37, 1, 37, 3, 37, 547, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 578, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 595, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 607, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 617, 8, 37, 1, 37, 3, 37, 620, 8, 37, 1, 37, 1, 37, 3, 37, 624, 8, 37, 1, 37, 3, 37, 627, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 639, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 656, 8, 37, 1, 37, 1, 37, 3, 37, 660, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 666, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 673, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 685, 8, 37, 1, 37, 1, 37, 3, 37, 689, 8, 37, 1, 37, 3, 37, 692, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 701, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 715, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 742, 8, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 751, 8, 37, 5, 37, 753, 8, 37, 10, 37, 12, 37, 756, 9, 37, 1, 38, 1, 38, 1, 38, 5, 38, 761, 8, 38, 10, 38, 12, 38, 764, 9, 38, 1, 39, 1, 39, 3, 39, 768, 8, 39, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 774, 8, 40, 10, 40, 12, 40, 777, 9, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 5, 40, 784, 8, 40, 10, 40, 12, 40, 787, 9, 40, 3, 40, 789, 8, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 5, 41, 797, 8, 41, 10, 41, 12, 41, 800, 9, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 3, 42, 812, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 3, 43, 818, 8, 43, 1, 43, 3, 43, 821, 8, 43, 1, 44, 1, 44, 1, 44, 5, 44, 826, 8, 44, 10, 44, 12, 44, 829, 9, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 838, 8, 45, 1, 45, 1, 45, 1, 45, 1, 45, 3, 45, 844, 8, 45, 5, 45, 846, 8, 45, 10, 45, 12, 45, 849, 9, 45, 1, 46, 1, 46, 1, 46, 3, 46, 854, 8, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 3, 47, 861, 8, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 5, 48, 868, 8, 48, 10, 48, 12, 48, 871, 9, 48, 1, 49, 1, 49, 1, 49, 3, 49, 876, 8, 49, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 3, 51, 886, 8, 51, 3, 51, 888, 8, 51, 1, 52, 3, 52, 891, 8, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 3, 52, 899, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 904, 8, 53, 1, 54, 1, 54, 1, 55, 1, 55, 1, 56, 1, 56, 1, 57, 1, 57, 3, 57, 914, 8, 57, 1, 58, 1, 58, 1, 58, 3, 58, 919, 8, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 0, 3, 36, 74, 90, 60, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 0, 16, 2, 0, 32, 32, 141, 141, 2, 0, 84, 84, 96, 96, 3, 0, 4, 4, 8, 8, 12, 12, 4, 0, 4, 4, 7, 8, 12, 12, 147, 147, 2, 0, 96, 96, 140, 140, 2, 0, 4, 4, 8, 8, 2, 0, 11, 11, 42, 43, 2, 0, 62, 62, 93, 93, 2, 0, 133, 133, 143, 143, 3, 0, 17, 17, 95, 95, 170, 170, 2, 0, 79, 79, 98, 98, 1, 0, 196, 197, 2, 0, 208, 208, 228, 228, 8, 0, 37, 37, 76, 76, 108, 108, 110, 110, 132, 132, 145, 145, 185, 185, 190, 190, 13, 0, 2, 24, 26, 36, 38, 75, 77, 81, 83, 107, 109, 109, 111, 112, 114, 115, 117, 130, 133, 144, 146, 184, 186, 189, 191, 192, 4, 0, 36, 36, 62, 62, 77, 77, 91, 91, 1045, 0, 122, 1, 0, 0, 0, 2, 126, 1, 0, 0, 0, 4, 140, 1, 0, 0, 0, 6, 143, 1, 0, 0, 0, 8, 192, 1, 0, 0, 0, 10, 195, 1, 0, 0, 0, 12, 201, 1, 0, 0, 0, 14, 205, 1, 0, 0, 0, 16, 211, 1, 0, 0, 0, 18, 229, 1, 0, 0, 0, 20, 232, 1, 0, 0, 0, 22, 235, 1, 0, 0, 0, 24, 245, 1, 0, 0, 0, 26, 248, 1, 0, 0, 0, 28, 252, 1, 0, 0, 0, 30, 285, 1, 0, 0, 0, 32, 287, 1, 0, 0, 0, 34, 290, 1, 0, 0, 0, 36, 305, 1, 0, 0, 0, 38, 367, 1, 0, 0, 0, 40, 372, 1, 0, 0, 0, 42, 383, 1, 0, 0, 0, 44, 385, 1, 0, 0, 0, 46, 391, 1, 0, 0, 0, 48, 399, 1, 0, 0, 0, 50, 411, 1, 0, 0, 0, 52, 416, 1, 0, 0, 0, 54, 424, 1, 0, 0, 0, 56, 429, 1, 0, 0, 0, 58, 437, 1, 0, 0, 0, 60, 441, 1, 0, 0, 0, 62, 445, 1, 0, 0, 0, 64, 454, 1, 0, 0, 0, 66, 468, 1, 0, 0, 0, 68, 470, 1, 0, 0, 0, 70, 520, 1, 0, 0, 0, 72, 522, 1, 0, 0, 0, 74, 659, 1, 0, 0, 0, 76, 757, 1, 0, 0, 0, 78, 767, 1, 0, 0, 0, 80, 788, 1, 0, 0, 0, 82, 793, 1, 0, 0, 0, 84, 811, 1, 0, 0, 0, 86, 820, 1, 0, 0, 0, 88, 822, 1, 0, 0, 0, 90, 837, 1, 0, 0, 0, 92, 850, 1, 0, 0, 0, 94, 860, 1, 0, 0, 0, 96, 864, 1, 0, 0, 0, 98, 875, 1, 0, 0, 0, 100, 877, 1, 0, 0, 0, 102, 887, 1, 0, 0, 0, 104, 890, 1, 0, 0, 0, 106, 903, 1, 0, 0, 0, 108, 905, 1, 0, 0, 0, 110, 907, 1, 0, 0, 0, 112, 909, 1, 0, 0, 0, 114, 913, 1, 0, 0, 0, 116, 918, 1, 0, 0, 0, 118, 920, 1, 0, 0, 0, 120, 123, 3, 2, 1, 0, 121, 123, 3, 6, 3, 0, 122, 120, 1, 0, 0, 0, 122, 121, 1, 0, 0, 0, 123, 124, 1, 0, 0, 0, 124, 125, 5, 0, 0, 1, 125, 1, 1, 0, 0, 0, 126, 132, 3, 4, 2, 0, 127, 128, 5, 176, 0, 0, 128, 129, 5, 4, 0, 0, 129, 131, 3, 4, 2, 0, 130, 127, 1, 0, 0, 0, 131, 134, 1, 0, 0, 0, 132, 130, 1, 0, 0, 0, 132, 133, 1, 0, 0, 0, 133, 3, 1, 0, 0, 0, 134, 132, 1, 0, 0, 0, 135, 141, 3, 6, 3, 0, 136, 137, 5, 220, 0, 0, 137, 138, 3, 2, 1, 0, 138, 139, 5, 236, 0, 0, 139, 141, 1, 0, 0, 0, 140, 135, 1, 0, 0, 0, 140, 136, 1, 0, 0, 0, 141, 5, 1, 0, 0, 0, 142, 144, 3, 8, 4, 0, 143, 142, 1, 0, 0, 0, 143, 144, 1, 0, 0, 0, 144, 145, 1, 0, 0, 0, 145, 147, 5, 146, 0, 0, 146, 148, 5, 49, 0, 0, 147, 146, 1, 0, 0, 0, 147, 148, 1, 0, 0, 0, 148, 150, 1, 0, 0, 0, 149, 151, 3, 10, 5, 0, 150, 149, 1, 0, 0, 0, 150, 151, 1, 0, 0, 0, 151, 152, 1, 0, 0, 0, 152, 154, 3, 72, 36, 0, 153, 155, 3, 12, 6, 0, 154, 153, 1, 0, 0, 0, 154, 155, 1, 0, 0, 0, 155, 157, 1, 0, 0, 0, 156, 158, 3, 14, 7, 0, 157, 156, 1, 0, 0, 0, 157, 158, 1, 0, 0, 0, 158, 160, 1, 0, 0, 0, 159, 161, 3, 18, 9, 0, 160, 159, 1, 0, 0, 0, 160, 161, 1, 0, 0, 0, 161, 163, 1, 0, 0, 0, 162, 164, 3, 20, 10, 0, 163, 162, 1, 0, 0, 0, 163, 164, 1, 0, 0, 0, 164, 166, 1, 0, 0, 0, 165, 167, 3, 22, 11, 0, 166, 165, 1, 0, 0, 0, 166, 167, 1, 0, 0, 0, 167, 170, 1, 0, 0, 0, 168, 169, 5, 189, 0, 0, 169, 171, 7, 0, 0, 0, 170, 168, 1, 0, 0, 0, 170, 171, 1, 0, 0, 0, 171, 174, 1, 0, 0, 0, 172, 173, 5, 189, 0, 0, 173, 175, 5, 169, 0, 0, 174, 172, 1, 0, 0, 0, 174, 175, 1, 0, 0, 0, 175, 177, 1, 0, 0, 0, 176, 178, 3, 24, 12, 0, 177, 176, 1, 0, 0, 0, 177, 178, 1, 0, 0, 0, 178, 180, 1, 0, 0, 0, 179, 181, 3, 16, 8, 0, 180, 179, 1, 0, 0, 0, 180, 181, 1, 0, 0, 0, 181, 183, 1, 0, 0, 0, 182, 184, 3, 26, 13, 0, 183, 182, 1, 0, 0, 0, 183, 184, 1, 0, 0, 0, 184, 187, 1, 0, 0, 0, 185, 188, 3, 30, 15, 0, 186, 188, 3, 32, 16, 0, 187, 185, 1, 0, 0, 0, 187, 186, 1, 0, 0, 0, 187, 188, 1, 0, 0, 0, 188, 190, 1, 0, 0, 0, 189, 191, 3, 34, 17, 0, 190, 189, 1, 0, 0, 0, 190, 191, 1, 0, 0, 0, 191, 7, 1, 0, 0, 0, 192, 193, 5, 189, 0, 0, 193, 194, 3, 82, 41, 0, 194, 9, 1, 0, 0, 0, 195, 196, 5, 168, 0, 0, 196, 199, 5, 197, 0, 0, 197, 198, 5, 189, 0, 0, 198, 200, 5, 164, 0, 0, 199, 197, 1, 0, 0, 0, 199, 200, 1, 0, 0, 0, 200, 11, 1, 0, 0, 0, 201, 202, 5, 68, 0, 0, 202, 203, 3, 36, 18, 0, 203, 13, 1, 0, 0, 0, 204, 206, 7, 1, 0, 0, 205, 204, 1, 0, 0, 0, 205, 206, 1, 0, 0, 0, 206, 207, 1, 0, 0, 0, 207, 208, 5, 9, 0, 0, 208, 209, 5, 90, 0, 0, 209, 210, 3, 72, 36, 0, 210, 15, 1, 0, 0, 0, 211, 212, 5, 188, 0, 0, 212, 213, 3, 116, 58, 0, 213, 214, 5, 10, 0, 0, 214, 215, 5, 220, 0, 0, 215, 216, 3, 56, 28, 0, 216, 226, 5, 236, 0, 0, 217, 218, 5, 206, 0, 0, 218, 219, 3, 116, 58, 0, 219, 220, 5, 10, 0, 0, 220, 221, 5, 220, 0, 0, 221, 222, 3, 56, 28, 0, 222, 223, 5, 236, 0, 0, 223, 225, 1, 0, 0, 0, 224, 217, 1, 0, 0, 0, 225, 228, 1, 0, 0, 0, 226, 224, 1, 0, 0, 0, 226, 227, 1, 0, 0, 0, 227, 17, 1, 0, 0, 0, 228, 226, 1, 0, 0, 0, 229, 230, 5, 129, 0, 0, 230, 231, 3, 74, 37, 0, 231, 19, 1, 0, 0, 0, 232, 233, 5, 187, 0, 0, 233, 234, 3, 74, 37, 0, 234, 21, 1, 0, 0, 0, 235, 236, 5, 73, 0, 0, 236, 243, 5, 18, 0, 0, 237, 238, 7, 0, 0, 0, 238, 239, 5, 220, 0, 0, 239, 240, 3, 72, 36, 0, 240, 241, 5, 236, 0, 0, 241, 244, 1, 0, 0, 0, 242, 244, 3, 72, 36, 0, 243, 237, 1, 0, 0, 0, 243, 242, 1, 0, 0, 0, 244, 23, 1, 0, 0, 0, 245, 246, 5, 74, 0, 0, 246, 247, 3, 74, 37, 0, 247, 25, 1, 0, 0, 0, 248, 249, 5, 122, 0, 0, 249, 250, 5, 18, 0, 0, 250, 251, 3, 46, 23, 0, 251, 27, 1, 0, 0, 0, 252, 253, 5, 122, 0, 0, 253, 254, 5, 18, 0, 0, 254, 255, 3, 72, 36, 0, 255, 29, 1, 0, 0, 0, 256, 257, 5, 99, 0, 0, 257, 260, 3, 74, 37, 0, 258, 259, 5, 206, 0, 0, 259, 261, 3, 74, 37, 0, 260, 258, 1, 0, 0, 0, 260, 261, 1, 0, 0, 0, 261, 266, 1, 0, 0, 0, 262, 263, 5, 189, 0, 0, 263, 267, 5, 164, 0, 0, 264, 265, 5, 18, 0, 0, 265, 267, 3, 72, 36, 0, 266, 262, 1, 0, 0, 0, 266, 264, 1, 0, 0, 0, 266, 267, 1, 0, 0, 0, 267, 286, 1, 0, 0, 0, 268, 269, 5, 99, 0, 0, 269, 272, 3, 74, 37, 0, 270, 271, 5, 189, 0, 0, 271, 273, 5, 164, 0, 0, 272, 270, 1, 0, 0, 0, 272, 273, 1, 0, 0, 0, 273, 274, 1, 0, 0, 0, 274, 275, 5, 118, 0, 0, 275, 276, 3, 74, 37, 0, 276, 286, 1, 0, 0, 0, 277, 278, 5, 99, 0, 0, 278, 279, 3, 74, 37, 0, 279, 280, 5, 118, 0, 0, 280, 283, 3, 74, 37, 0, 281, 282, 5, 18, 0, 0, 282, 284, 3, 72, 36, 0, 283, 281, 1, 0, 0, 0, 283, 284, 1, 0, 0, 0, 284, 286, 1, 0, 0, 0, 285, 256, 1, 0, 0, 0, 285, 268, 1, 0, 0, 0, 285, 277, 1, 0, 0, 0, 286, 31, 1, 0, 0, 0, 287, 288, 5, 118, 0, 0, 288, 289, 3, 74, 37, 0, 289, 33, 1, 0, 0, 0, 290, 291, 5, 150, 0, 0, 291, 292, 3, 52, 26, 0, 292, 35, 1, 0, 0, 0, 293, 294, 6, 18, -1, 0, 294, 296, 3, 90, 45, 0, 295, 297, 5, 61, 0, 0, 296, 295, 1, 0, 0, 0, 296, 297, 1, 0, 0, 0, 297, 299, 1, 0, 0, 0, 298, 300, 3, 44, 22, 0, 299, 298, 1, 0, 0, 0, 299, 300, 1, 0, 0, 0, 300, 306, 1, 0, 0, 0, 301, 302, 5, 220, 0, 0, 302, 303, 3, 36, 18, 0, 303, 304, 5, 236, 0, 0, 304, 306, 1, 0, 0, 0, 305, 293, 1, 0, 0, 0, 305, 301, 1, 0, 0, 0, 306, 321, 1, 0, 0, 0, 307, 308, 10, 3, 0, 0, 308, 309, 3, 40, 20, 0, 309, 310, 3, 36, 18, 4, 310, 320, 1, 0, 0, 0, 311, 313, 10, 4, 0, 0, 312, 314, 3, 38, 19, 0, 313, 312, 1, 0, 0, 0, 313, 314, 1, 0, 0, 0, 314, 315, 1, 0, 0, 0, 315, 316, 5, 90, 0, 0, 316, 317, 3, 36, 18, 0, 317, 318, 3, 42, 21, 0, 318, 320, 1, 0, 0, 0, 319, 307, 1, 0, 0, 0, 319, 311, 1, 0, 0, 0, 320, 323, 1, 0, 0, 0, 321, 319, 1, 0, 0, 0, 321, 322, 1, 0, 0, 0, 322, 37, 1, 0, 0, 0, 323, 321, 1, 0, 0, 0, 324, 326, 7, 2, 0, 0, 325, 324, 1, 0, 0, 0, 325, 326, 1, 0, 0, 0, 326, 327, 1, 0, 0, 0, 327, 334, 5, 84, 0, 0, 328, 330, 5, 84, 0, 0, 329, 331, 7, 2, 0, 0, 330, 329, 1, 0, 0, 0, 330, 331, 1, 0, 0, 0, 331, 334, 1, 0, 0, 0, 332, 334, 7, 2, 0, 0, 333, 325, 1, 0, 0, 0, 333, 328, 1, 0, 0, 0, 333, 332, 1, 0, 0, 0, 334, 368, 1, 0, 0, 0, 335, 337, 7, 3, 0, 0, 336, 335, 1, 0, 0, 0, 336, 337, 1, 0, 0, 0, 337, 338, 1, 0, 0, 0, 338, 340, 7, 4, 0, 0, 339, 341, 5, 123, 0, 0, 340, 339, 1, 0, 0, 0, 340, 341, 1, 0, 0, 0, 341, 350, 1, 0, 0, 0, 342, 344, 7, 4, 0, 0, 343, 345, 5, 123, 0, 0, 344, 343, 1, 0, 0, 0, 344, 345, 1, 0, 0, 0, 345, 347, 1, 0, 0, 0, 346, 348, 7, 3, 0, 0, 347, 346, 1, 0, 0, 0, 347, 348, 1, 0, 0, 0, 348, 350, 1, 0, 0, 0, 349, 336, 1, 0, 0, 0, 349, 342, 1, 0, 0, 0, 350, 368, 1, 0, 0, 0, 351, 353, 7, 5, 0, 0, 352, 351, 1, 0, 0, 0, 352, 353, 1, 0, 0, 0, 353, 354, 1, 0, 0, 0, 354, 356, 5, 69, 0, 0, 355, 357, 5, 123, 0, 0, 356, 355, 1, 0, 0, 0, 356, 357, 1, 0, 0, 0, 357, 366, 1, 0, 0, 0, 358, 360, 5, 69, 0, 0, 359, 361, 5, 123, 0, 0, 360, 359, 1, 0, 0, 0, 360, 361, 1, 0, 0, 0, 361, 363, 1, 0, 0, 0, 362, 364, 7, 5, 0, 0, 363, 362, 1, 0, 0, 0, 363, 364, 1, 0, 0, 0, 364, 366, 1, 0, 0, 0, 365, 352, 1, 0, 0, 0, 365, 358, 1, 0, 0, 0, 366, 368, 1, 0, 0, 0, 367, 333, 1, 0, 0, 0, 367, 349, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 368, 39, 1, 0, 0, 0, 369, 370, 5, 31, 0, 0, 370, 373, 5, 90, 0, 0, 371, 373, 5, 206, 0, 0, 372, 369, 1, 0, 0, 0, 372, 371, 1, 0, 0, 0, 373, 41, 1, 0, 0, 0, 374, 375, 5, 119, 0, 0, 375, 384, 3, 72, 36, 0, 376, 377, 5, 179, 0, 0, 377, 378, 5, 220, 0, 0, 378, 379, 3, 72, 36, 0, 379, 380, 5, 236, 0, 0, 380, 384, 1, 0, 0, 0, 381, 382, 5, 179, 0, 0, 382, 384, 3, 72, 36, 0, 383, 374, 1, 0, 0, 0, 383, 376, 1, 0, 0, 0, 383, 381, 1, 0, 0, 0, 384, 43, 1, 0, 0, 0, 385, 386, 5, 144, 0, 0, 386, 389, 3, 50, 25, 0, 387, 388, 5, 118, 0, 0, 388, 390, 3, 50, 25, 0, 389, 387, 1, 0, 0, 0, 389, 390, 1, 0, 0, 0, 390, 45, 1, 0, 0, 0, 391, 396, 3, 48, 24, 0, 392, 393, 5, 206, 0, 0, 393, 395, 3, 48, 24, 0, 394, 392, 1, 0, 0, 0, 395, 398, 1, 0, 0, 0, 396, 394, 1, 0, 0, 0, 396, 397, 1, 0, 0, 0, 397, 47, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 399, 401, 3, 74, 37, 0, 400, 402, 7, 6, 0, 0, 401, 400, 1, 0, 0, 0, 401, 402, 1, 0, 0, 0, 402, 405, 1, 0, 0, 0, 403, 404, 5, 117, 0, 0, 404, 406, 7, 7, 0, 0, 405, 403, 1, 0, 0, 0, 405, 406, 1, 0, 0, 0, 406, 409, 1, 0, 0, 0, 407, 408, 5, 26, 0, 0, 408, 410, 5, 199, 0, 0, 409, 407, 1, 0, 0, 0, 409, 410, 1, 0, 0, 0, 410, 49, 1, 0, 0, 0, 411, 414, 3, 104, 52, 0, 412, 413, 5, 238, 0, 0, 413, 415, 3, 104, 52, 0, 414, 412, 1, 0, 0, 0, 414, 415, 1, 0, 0, 0, 415, 51, 1, 0, 0, 0, 416, 421, 3, 54, 27, 0, 417, 418, 5, 206, 0, 0, 418, 420, 3, 54, 27, 0, 419, 417, 1, 0, 0, 0, 420, 423, 1, 0, 0, 0, 421, 419, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 53, 1, 0, 0, 0, 423, 421, 1, 0, 0, 0, 424, 425, 3, 116, 58, 0, 425, 426, 5, 212, 0, 0, 426, 427, 3, 106, 53, 0, 427, 55, 1, 0, 0, 0, 428, 430, 3, 58, 29, 0, 429, 428, 1, 0, 0, 0, 429, 430, 1, 0, 0, 0, 430, 432, 1, 0, 0, 0, 431, 433, 3, 60, 30, 0, 432, 431, 1, 0, 0, 0, 432, 433, 1, 0, 0, 0, 433, 435, 1, 0, 0, 0, 434, 436, 3, 62, 31, 0, 435, 434, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 57, 1, 0, 0, 0, 437, 438, 5, 126, 0, 0, 438, 439, 5, 18, 0, 0, 439, 440, 3, 72, 36, 0, 440, 59, 1, 0, 0, 0, 441, 442, 5, 122, 0, 0, 442, 443, 5, 18, 0, 0, 443, 444, 3, 46, 23, 0, 444, 61, 1, 0, 0, 0, 445, 446, 7, 8, 0, 0, 446, 447, 3, 64, 32, 0, 447, 63, 1, 0, 0, 0, 448, 455, 3, 66, 33, 0, 449, 450, 5, 16, 0, 0, 450, 451, 3, 66, 33, 0, 451, 452, 5, 6, 0, 0, 452, 453, 3, 66, 33, 0, 453, 455, 1, 0, 0, 0, 454, 448, 1, 0, 0, 0, 454, 449, 1, 0, 0, 0, 455, 65, 1, 0, 0, 0, 456, 457, 5, 33, 0, 0, 457, 469, 5, 142, 0, 0, 458, 459, 5, 175, 0, 0, 459, 469, 5, 128, 0, 0, 460, 461, 5, 175, 0, 0, 461, 469, 5, 64, 0, 0, 462, 463, 3, 104, 52, 0, 463, 464, 5, 128, 0, 0, 464, 469, 1, 0, 0, 0, 465, 466, 3, 104, 52, 0, 466, 467, 5, 64, 0, 0, 467, 469, 1, 0, 0, 0, 468, 456, 1, 0, 0, 0, 468, 458, 1, 0, 0, 0, 468, 460, 1, 0, 0, 0, 468, 462, 1, 0, 0, 0, 468, 465, 1, 0, 0, 0, 469, 67, 1, 0, 0, 0, 470, 471, 3, 74, 37, 0, 471, 472, 5, 0, 0, 1, 472, 69, 1, 0, 0, 0, 473, 521, 3, 116, 58, 0, 474, 475, 3, 116, 58, 0, 475, 476, 5, 220, 0, 0, 476, 477, 3, 116, 58, 0, 477, 484, 3, 70, 35, 0, 478, 479, 5, 206, 0, 0, 479, 480, 3, 116, 58, 0, 480, 481, 3, 70, 35, 0, 481, 483, 1, 0, 0, 0, 482, 478, 1, 0, 0, 0, 483, 486, 1, 0, 0, 0, 484, 482, 1, 0, 0, 0, 484, 485, 1, 0, 0, 0, 485, 487, 1, 0, 0, 0, 486, 484, 1, 0, 0, 0, 487, 488, 5, 236, 0, 0, 488, 521, 1, 0, 0, 0, 489, 490, 3, 116, 58, 0, 490, 491, 5, 220, 0, 0, 491, 496, 3, 118, 59, 0, 492, 493, 5, 206, 0, 0, 493, 495, 3, 118, 59, 0, 494, 492, 1, 0, 0, 0, 495, 498, 1, 0, 0, 0, 496, 494, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 499, 1, 0, 0, 0, 498, 496, 1, 0, 0, 0, 499, 500, 5, 236, 0, 0, 500, 521, 1, 0, 0, 0, 501, 502, 3, 116, 58, 0, 502, 503, 5, 220, 0, 0, 503, 508, 3, 70, 35, 0, 504, 505, 5, 206, 0, 0, 505, 507, 3, 70, 35, 0, 506, 504, 1, 0, 0, 0, 507, 510, 1, 0, 0, 0, 508, 506, 1, 0, 0, 0, 508, 509, 1, 0, 0, 0, 509, 511, 1, 0, 0, 0, 510, 508, 1, 0, 0, 0, 511, 512, 5, 236, 0, 0, 512, 521, 1, 0, 0, 0, 513, 514, 3, 116, 58, 0, 514, 516, 5, 220, 0, 0, 515, 517, 3, 72, 36, 0, 516, 515, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 5, 236, 0, 0, 519, 521, 1, 0, 0, 0, 520, 473, 1, 0, 0, 0, 520, 474, 1, 0, 0, 0, 520, 489, 1, 0, 0, 0, 520, 501, 1, 0, 0, 0, 520, 513, 1, 0, 0, 0, 521, 71, 1, 0, 0, 0, 522, 527, 3, 74, 37, 0, 523, 524, 5, 206, 0, 0, 524, 526, 3, 74, 37, 0, 525, 523, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 73, 1, 0, 0, 0, 529, 527, 1, 0, 0, 0, 530, 531, 6, 37, -1, 0, 531, 533, 5, 19, 0, 0, 532, 534, 3, 74, 37, 0, 533, 532, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 540, 1, 0, 0, 0, 535, 536, 5, 186, 0, 0, 536, 537, 3, 74, 37, 0, 537, 538, 5, 163, 0, 0, 538, 539, 3, 74, 37, 0, 539, 541, 1, 0, 0, 0, 540, 535, 1, 0, 0, 0, 541, 542, 1, 0, 0, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 545, 5, 52, 0, 0, 545, 547, 3, 74, 37, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 53, 0, 0, 549, 660, 1, 0, 0, 0, 550, 551, 5, 20, 0, 0, 551, 552, 5, 220, 0, 0, 552, 553, 3, 74, 37, 0, 553, 554, 5, 10, 0, 0, 554, 555, 3, 70, 35, 0, 555, 556, 5, 236, 0, 0, 556, 660, 1, 0, 0, 0, 557, 558, 5, 36, 0, 0, 558, 660, 5, 199, 0, 0, 559, 560, 5, 59, 0, 0, 560, 561, 5, 220, 0, 0, 561, 562, 3, 108, 54, 0, 562, 563, 5, 68, 0, 0, 563, 564, 3, 74, 37, 0, 564, 565, 5, 236, 0, 0, 565, 660, 1, 0, 0, 0, 566, 567, 5, 86, 0, 0, 567, 568, 3, 74, 37, 0, 568, 569, 3, 108, 54, 0, 569, 660, 1, 0, 0, 0, 570, 571, 5, 155, 0, 0, 571, 572, 5, 220, 0, 0, 572, 573, 3, 74, 37, 0, 573, 574, 5, 68, 0, 0, 574, 577, 3, 74, 37, 0, 575, 576, 5, 65, 0, 0, 576, 578, 3, 74, 37, 0, 577, 575, 1, 0, 0, 0, 577, 578, 1, 0, 0, 0, 578, 579, 1, 0, 0, 0, 579, 580, 5, 236, 0, 0, 580, 660, 1, 0, 0, 0, 581, 582, 5, 166, 0, 0, 582, 660, 5, 199, 0, 0, 583, 584, 5, 171, 0, 0, 584, 585, 5, 220, 0, 0, 585, 586, 7, 9, 0, 0, 586, 587, 5, 199, 0, 0, 587, 588, 5, 68, 0, 0, 588, 589, 3, 74, 37, 0, 589, 590, 5, 236, 0, 0, 590, 660, 1, 0, 0, 0, 591, 592, 3, 116, 58, 0, 592, 594, 5, 220, 0, 0, 593, 595, 3, 72, 36, 0, 594, 593, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 236, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 125, 0, 0, 599, 600, 5, 220, 0, 0, 600, 601, 3, 56, 28, 0, 601, 602, 5, 236, 0, 0, 602, 660, 1, 0, 0, 0, 603, 604, 3, 116, 58, 0, 604, 606, 5, 220, 0, 0, 605, 607, 3, 72, 36, 0, 606, 605, 1, 0, 0, 0, 606, 607, 1, 0, 0, 0, 607, 608, 1, 0, 0, 0, 608, 609, 5, 236, 0, 0, 609, 610, 1, 0, 0, 0, 610, 611, 5, 125, 0, 0, 611, 612, 3, 116, 58, 0, 612, 660, 1, 0, 0, 0, 613, 619, 3, 116, 58, 0, 614, 616, 5, 220, 0, 0, 615, 617, 3, 72, 36, 0, 616, 615, 1, 0, 0, 0, 616, 617, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 620, 5, 236, 0, 0, 619, 614, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 621, 1, 0, 0, 0, 621, 623, 5, 220, 0, 0, 622, 624, 5, 49, 0, 0, 623, 622, 1, 0, 0, 0, 623, 624, 1, 0, 0, 0, 624, 626, 1, 0, 0, 0, 625, 627, 3, 76, 38, 0, 626, 625, 1, 0, 0, 0, 626, 627, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 629, 5, 236, 0, 0, 629, 660, 1, 0, 0, 0, 630, 660, 3, 106, 53, 0, 631, 632, 5, 208, 0, 0, 632, 660, 3, 74, 37, 18, 633, 634, 5, 115, 0, 0, 634, 660, 3, 74, 37, 12, 635, 636, 3, 94, 47, 0, 636, 637, 5, 210, 0, 0, 637, 639, 1, 0, 0, 0, 638, 635, 1, 0, 0, 0, 638, 639, 1, 0, 0, 0, 639, 640, 1, 0, 0, 0, 640, 660, 5, 202, 0, 0, 641, 642, 5, 220, 0, 0, 642, 643, 3, 2, 1, 0, 643, 644, 5, 236, 0, 0, 644, 660, 1, 0, 0, 0, 645, 646, 5, 220, 0, 0, 646, 647, 3, 74, 37, 0, 647, 648, 5, 236, 0, 0, 648, 660, 1, 0, 0, 0, 649, 650, 5, 220, 0, 0, 650, 651, 3, 72, 36, 0, 651, 652, 5, 236, 0, 0, 652, 660, 1, 0, 0, 0, 653, 655, 5, 219, 0, 0, 654, 656, 3, 72, 36, 0, 655, 654, 1, 0, 0, 0, 655, 656, 1, 0, 0, 0, 656, 657, 1, 0, 0, 0, 657, 660, 5, 235, 0, 0, 658, 660, 3, 86, 43, 0, 659, 530, 1, 0, 0, 0, 659, 550, 1, 0, 0, 0, 659, 557, 1, 0, 0, 0, 659, 559, 1, 0, 0, 0, 659, 566, 1, 0, 0, 0, 659, 570, 1, 0, 0, 0, 659, 581, 1, 0, 0, 0, 659, 583, 1, 0, 0, 0, 659, 591, 1, 0, 0, 0, 659, 603, 1, 0, 0, 0, 659, 613, 1, 0, 0, 0, 659, 630, 1, 0, 0, 0, 659, 631, 1, 0, 0, 0, 659, 633, 1, 0, 0, 0, 659, 638, 1, 0, 0, 0, 659, 641, 1, 0, 0, 0, 659, 645, 1, 0, 0, 0, 659, 649, 1, 0, 0, 0, 659, 653, 1, 0, 0, 0, 659, 658, 1, 0, 0, 0, 660, 754, 1, 0, 0, 0, 661, 665, 10, 17, 0, 0, 662, 666, 5, 202, 0, 0, 663, 666, 5, 238, 0, 0, 664, 666, 5, 227, 0, 0, 665, 662, 1, 0, 0, 0, 665, 663, 1, 0, 0, 0, 665, 664, 1, 0, 0, 0, 666, 667, 1, 0, 0, 0, 667, 753, 3, 74, 37, 18, 668, 672, 10, 16, 0, 0, 669, 673, 5, 228, 0, 0, 670, 673, 5, 208, 0, 0, 671, 673, 5, 207, 0, 0, 672, 669, 1, 0, 0, 0, 672, 670, 1, 0, 0, 0, 672, 671, 1, 0, 0, 0, 673, 674, 1, 0, 0, 0, 674, 753, 3, 74, 37, 17, 675, 700, 10, 15, 0, 0, 676, 701, 5, 211, 0, 0, 677, 701, 5, 212, 0, 0, 678, 701, 5, 223, 0, 0, 679, 701, 5, 221, 0, 0, 680, 701, 5, 222, 0, 0, 681, 701, 5, 213, 0, 0, 682, 701, 5, 214, 0, 0, 683, 685, 5, 115, 0, 0, 684, 683, 1, 0, 0, 0, 684, 685, 1, 0, 0, 0, 685, 686, 1, 0, 0, 0, 686, 688, 5, 80, 0, 0, 687, 689, 5, 25, 0, 0, 688, 687, 1, 0, 0, 0, 688, 689, 1, 0, 0, 0, 689, 701, 1, 0, 0, 0, 690, 692, 5, 115, 0, 0, 691, 690, 1, 0, 0, 0, 691, 692, 1, 0, 0, 0, 692, 693, 1, 0, 0, 0, 693, 701, 7, 10, 0, 0, 694, 701, 5, 232, 0, 0, 695, 701, 5, 233, 0, 0, 696, 701, 5, 225, 0, 0, 697, 701, 5, 216, 0, 0, 698, 701, 5, 217, 0, 0, 699, 701, 5, 224, 0, 0, 700, 676, 1, 0, 0, 0, 700, 677, 1, 0, 0, 0, 700, 678, 1, 0, 0, 0, 700, 679, 1, 0, 0, 0, 700, 680, 1, 0, 0, 0, 700, 681, 1, 0, 0, 0, 700, 682, 1, 0, 0, 0, 700, 684, 1, 0, 0, 0, 700, 691, 1, 0, 0, 0, 700, 694, 1, 0, 0, 0, 700, 695, 1, 0, 0, 0, 700, 696, 1, 0, 0, 0, 700, 697, 1, 0, 0, 0, 700, 698, 1, 0, 0, 0, 700, 699, 1, 0, 0, 0, 701, 702, 1, 0, 0, 0, 702, 753, 3, 74, 37, 16, 703, 704, 10, 13, 0, 0, 704, 705, 5, 226, 0, 0, 705, 753, 3, 74, 37, 14, 706, 707, 10, 11, 0, 0, 707, 708, 5, 6, 0, 0, 708, 753, 3, 74, 37, 12, 709, 710, 10, 10, 0, 0, 710, 711, 5, 121, 0, 0, 711, 753, 3, 74, 37, 11, 712, 714, 10, 9, 0, 0, 713, 715, 5, 115, 0, 0, 714, 713, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 717, 5, 16, 0, 0, 717, 718, 3, 74, 37, 0, 718, 719, 5, 6, 0, 0, 719, 720, 3, 74, 37, 10, 720, 753, 1, 0, 0, 0, 721, 722, 10, 8, 0, 0, 722, 723, 5, 229, 0, 0, 723, 724, 3, 74, 37, 0, 724, 725, 5, 205, 0, 0, 725, 726, 3, 74, 37, 8, 726, 753, 1, 0, 0, 0, 727, 728, 10, 21, 0, 0, 728, 729, 5, 219, 0, 0, 729, 730, 3, 74, 37, 0, 730, 731, 5, 235, 0, 0, 731, 753, 1, 0, 0, 0, 732, 733, 10, 20, 0, 0, 733, 734, 5, 210, 0, 0, 734, 753, 5, 197, 0, 0, 735, 736, 10, 19, 0, 0, 736, 737, 5, 210, 0, 0, 737, 753, 3, 116, 58, 0, 738, 739, 10, 14, 0, 0, 739, 741, 5, 88, 0, 0, 740, 742, 5, 115, 0, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 753, 5, 116, 0, 0, 744, 750, 10, 7, 0, 0, 745, 751, 3, 114, 57, 0, 746, 747, 5, 10, 0, 0, 747, 751, 3, 116, 58, 0, 748, 749, 5, 10, 0, 0, 749, 751, 5, 199, 0, 0, 750, 745, 1, 0, 0, 0, 750, 746, 1, 0, 0, 0, 750, 748, 1, 0, 0, 0, 751, 753, 1, 0, 0, 0, 752, 661, 1, 0, 0, 0, 752, 668, 1, 0, 0, 0, 752, 675, 1, 0, 0, 0, 752, 703, 1, 0, 0, 0, 752, 706, 1, 0, 0, 0, 752, 709, 1, 0, 0, 0, 752, 712, 1, 0, 0, 0, 752, 721, 1, 0, 0, 0, 752, 727, 1, 0, 0, 0, 752, 732, 1, 0, 0, 0, 752, 735, 1, 0, 0, 0, 752, 738, 1, 0, 0, 0, 752, 744, 1, 0, 0, 0, 753, 756, 1, 0, 0, 0, 754, 752, 1, 0, 0, 0, 754, 755, 1, 0, 0, 0, 755, 75, 1, 0, 0, 0, 756, 754, 1, 0, 0, 0, 757, 762, 3, 78, 39, 0, 758, 759, 5, 206, 0, 0, 759, 761, 3, 78, 39, 0, 760, 758, 1, 0, 0, 0, 761, 764, 1, 0, 0, 0, 762, 760, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 77, 1, 0, 0, 0, 764, 762, 1, 0, 0, 0, 765, 768, 3, 80, 40, 0, 766, 768, 3, 74, 37, 0, 767, 765, 1, 0, 0, 0, 767, 766, 1, 0, 0, 0, 768, 79, 1, 0, 0, 0, 769, 770, 5, 220, 0, 0, 770, 775, 3, 116, 58, 0, 771, 772, 5, 206, 0, 0, 772, 774, 3, 116, 58, 0, 773, 771, 1, 0, 0, 0, 774, 777, 1, 0, 0, 0, 775, 773, 1, 0, 0, 0, 775, 776, 1, 0, 0, 0, 776, 778, 1, 0, 0, 0, 777, 775, 1, 0, 0, 0, 778, 779, 5, 236, 0, 0, 779, 789, 1, 0, 0, 0, 780, 785, 3, 116, 58, 0, 781, 782, 5, 206, 0, 0, 782, 784, 3, 116, 58, 0, 783, 781, 1, 0, 0, 0, 784, 787, 1, 0, 0, 0, 785, 783, 1, 0, 0, 0, 785, 786, 1, 0, 0, 0, 786, 789, 1, 0, 0, 0, 787, 785, 1, 0, 0, 0, 788, 769, 1, 0, 0, 0, 788, 780, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 791, 5, 201, 0, 0, 791, 792, 3, 74, 37, 0, 792, 81, 1, 0, 0, 0, 793, 798, 3, 84, 42, 0, 794, 795, 5, 206, 0, 0, 795, 797, 3, 84, 42, 0, 796, 794, 1, 0, 0, 0, 797, 800, 1, 0, 0, 0, 798, 796, 1, 0, 0, 0, 798, 799, 1, 0, 0, 0, 799, 83, 1, 0, 0, 0, 800, 798, 1, 0, 0, 0, 801, 802, 3, 116, 58, 0, 802, 803, 5, 10, 0, 0, 803, 804, 5, 220, 0, 0, 804, 805, 3, 2, 1, 0, 805, 806, 5, 236, 0, 0, 806, 812, 1, 0, 0, 0, 807, 808, 3, 74, 37, 0, 808, 809, 5, 10, 0, 0, 809, 810, 3, 116, 58, 0, 810, 812, 1, 0, 0, 0, 811, 801, 1, 0, 0, 0, 811, 807, 1, 0, 0, 0, 812, 85, 1, 0, 0, 0, 813, 821, 5, 200, 0, 0, 814, 815, 3, 94, 47, 0, 815, 816, 5, 210, 0, 0, 816, 818, 1, 0, 0, 0, 817, 814, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 819, 1, 0, 0, 0, 819, 821, 3, 88, 44, 0, 820, 813, 1, 0, 0, 0, 820, 817, 1, 0, 0, 0, 821, 87, 1, 0, 0, 0, 822, 827, 3, 116, 58, 0, 823, 824, 5, 210, 0, 0, 824, 826, 3, 116, 58, 0, 825, 823, 1, 0, 0, 0, 826, 829, 1, 0, 0, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 89, 1, 0, 0, 0, 829, 827, 1, 0, 0, 0, 830, 831, 6, 45, -1, 0, 831, 838, 3, 94, 47, 0, 832, 838, 3, 92, 46, 0, 833, 834, 5, 220, 0, 0, 834, 835, 3, 2, 1, 0, 835, 836, 5, 236, 0, 0, 836, 838, 1, 0, 0, 0, 837, 830, 1, 0, 0, 0, 837, 832, 1, 0, 0, 0, 837, 833, 1, 0, 0, 0, 838, 847, 1, 0, 0, 0, 839, 843, 10, 1, 0, 0, 840, 844, 3, 114, 57, 0, 841, 842, 5, 10, 0, 0, 842, 844, 3, 116, 58, 0, 843, 840, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 844, 846, 1, 0, 0, 0, 845, 839, 1, 0, 0, 0, 846, 849, 1, 0, 0, 0, 847, 845, 1, 0, 0, 0, 847, 848, 1, 0, 0, 0, 848, 91, 1, 0, 0, 0, 849, 847, 1, 0, 0, 0, 850, 851, 3, 116, 58, 0, 851, 853, 5, 220, 0, 0, 852, 854, 3, 96, 48, 0, 853, 852, 1, 0, 0, 0, 853, 854, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 856, 5, 236, 0, 0, 856, 93, 1, 0, 0, 0, 857, 858, 3, 100, 50, 0, 858, 859, 5, 210, 0, 0, 859, 861, 1, 0, 0, 0, 860, 857, 1, 0, 0, 0, 860, 861, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 863, 3, 116, 58, 0, 863, 95, 1, 0, 0, 0, 864, 869, 3, 98, 49, 0, 865, 866, 5, 206, 0, 0, 866, 868, 3, 98, 49, 0, 867, 865, 1, 0, 0, 0, 868, 871, 1, 0, 0, 0, 869, 867, 1, 0, 0, 0, 869, 870, 1, 0, 0, 0, 870, 97, 1, 0, 0, 0, 871, 869, 1, 0, 0, 0, 872, 876, 3, 88, 44, 0, 873, 876, 3, 92, 46, 0, 874, 876, 3, 106, 53, 0, 875, 872, 1, 0, 0, 0, 875, 873, 1, 0, 0, 0, 875, 874, 1, 0, 0, 0, 876, 99, 1, 0, 0, 0, 877, 878, 3, 116, 58, 0, 878, 101, 1, 0, 0, 0, 879, 888, 5, 195, 0, 0, 880, 881, 5, 210, 0, 0, 881, 888, 7, 11, 0, 0, 882, 883, 5, 197, 0, 0, 883, 885, 5, 210, 0, 0, 884, 886, 7, 11, 0, 0, 885, 884, 1, 0, 0, 0, 885, 886, 1, 0, 0, 0, 886, 888, 1, 0, 0, 0, 887, 879, 1, 0, 0, 0, 887, 880, 1, 0, 0, 0, 887, 882, 1, 0, 0, 0, 888, 103, 1, 0, 0, 0, 889, 891, 7, 12, 0, 0, 890, 889, 1, 0, 0, 0, 890, 891, 1, 0, 0, 0, 891, 898, 1, 0, 0, 0, 892, 899, 3, 102, 51, 0, 893, 899, 5, 196, 0, 0, 894, 899, 5, 197, 0, 0, 895, 899, 5, 198, 0, 0, 896, 899, 5, 82, 0, 0, 897, 899, 5, 113, 0, 0, 898, 892, 1, 0, 0, 0, 898, 893, 1, 0, 0, 0, 898, 894, 1, 0, 0, 0, 898, 895, 1, 0, 0, 0, 898, 896, 1, 0, 0, 0, 898, 897, 1, 0, 0, 0, 899, 105, 1, 0, 0, 0, 900, 904, 3, 104, 52, 0, 901, 904, 5, 199, 0, 0, 902, 904, 5, 116, 0, 0, 903, 900, 1, 0, 0, 0, 903, 901, 1, 0, 0, 0, 903, 902, 1, 0, 0, 0, 904, 107, 1, 0, 0, 0, 905, 906, 7, 13, 0, 0, 906, 109, 1, 0, 0, 0, 907, 908, 7, 14, 0, 0, 908, 111, 1, 0, 0, 0, 909, 910, 7, 15, 0, 0, 910, 113, 1, 0, 0, 0, 911, 914, 5, 194, 0, 0, 912, 914, 3, 112, 56, 0, 913, 911, 1, 0, 0, 0, 913, 912, 1, 0, 0, 0, 914, 115, 1, 0, 0, 0, 915, 919, 5, 194, 0, 0, 916, 919, 3, 108, 54, 0, 917, 919, 3, 110, 55, 0, 918, 915, 1, 0, 0, 0, 918, 916, 1, 0, 0, 0, 918, 917, 1, 0, 0, 0, 919, 117, 1, 0, 0, 0, 920, 921, 5, 199, 0, 0, 921, 922, 5, 212, 0, 0, 922, 923, 3, 104, 52, 0, 923, 119, 1, 0, 0, 0, 115, 122, 132, 140, 143, 147, 150, 154, 157, 160, 163, 166, 170, 174, 177, 180, 183, 187, 190, 199, 205, 226, 243, 260, 266, 272, 283, 285, 296, 299, 305, 313, 319, 321, 325, 330, 333, 336, 340, 344, 347, 349, 352, 356, 360, 363, 365, 367, 372, 383, 389, 396, 401, 405, 409, 414, 421, 429, 432, 435, 454, 468, 484, 496, 508, 516, 520, 527, 533, 542, 546, 577, 594, 606, 616, 619, 623, 626, 638, 655, 659, 665, 672, 684, 688, 691, 700, 714, 741, 750, 752, 754, 762, 767, 775, 785, 788, 798, 811, 817, 820, 827, 837, 843, 847, 853, 860, 869, 875, 885, 887, 890, 898, 903, 913, 918] \ No newline at end of file diff --git a/posthog/hogql/grammar/HogQLParser.py b/posthog/hogql/grammar/HogQLParser.py index eaa87fa2ec34d..1785a9f3a2114 100644 --- a/posthog/hogql/grammar/HogQLParser.py +++ b/posthog/hogql/grammar/HogQLParser.py @@ -10,7 +10,7 @@ def serializedATN(): return [ - 4,1,236,919,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,242,925,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -68,309 +68,312 @@ def serializedATN(): 37,660,8,37,1,37,1,37,1,37,1,37,3,37,666,8,37,1,37,1,37,1,37,1,37, 1,37,3,37,673,8,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37, 1,37,3,37,685,8,37,1,37,1,37,3,37,689,8,37,1,37,3,37,692,8,37,1, - 37,3,37,695,8,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1, - 37,1,37,1,37,3,37,709,8,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1, + 37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,701,8,37,1,37,1,37,1,37,1, + 37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,715,8,37,1,37,1, 37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1, - 37,1,37,1,37,1,37,1,37,3,37,736,8,37,1,37,1,37,1,37,1,37,1,37,1, - 37,1,37,3,37,745,8,37,5,37,747,8,37,10,37,12,37,750,9,37,1,38,1, - 38,1,38,5,38,755,8,38,10,38,12,38,758,9,38,1,39,1,39,3,39,762,8, - 39,1,40,1,40,1,40,1,40,5,40,768,8,40,10,40,12,40,771,9,40,1,40,1, - 40,1,40,1,40,1,40,5,40,778,8,40,10,40,12,40,781,9,40,3,40,783,8, - 40,1,40,1,40,1,40,1,41,1,41,1,41,5,41,791,8,41,10,41,12,41,794,9, - 41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,3,42,806,8, - 42,1,43,1,43,1,43,1,43,3,43,812,8,43,1,43,3,43,815,8,43,1,44,1,44, - 1,44,5,44,820,8,44,10,44,12,44,823,9,44,1,45,1,45,1,45,1,45,1,45, - 1,45,1,45,3,45,832,8,45,1,45,1,45,1,45,1,45,3,45,838,8,45,5,45,840, - 8,45,10,45,12,45,843,9,45,1,46,1,46,1,46,3,46,848,8,46,1,46,1,46, - 1,47,1,47,1,47,3,47,855,8,47,1,47,1,47,1,48,1,48,1,48,5,48,862,8, - 48,10,48,12,48,865,9,48,1,49,1,49,1,49,3,49,870,8,49,1,50,1,50,1, - 51,1,51,1,51,1,51,1,51,1,51,3,51,880,8,51,3,51,882,8,51,1,52,3,52, - 885,8,52,1,52,1,52,1,52,1,52,1,52,1,52,3,52,893,8,52,1,53,1,53,1, - 53,3,53,898,8,53,1,54,1,54,1,55,1,55,1,56,1,56,1,57,1,57,3,57,908, - 8,57,1,58,1,58,1,58,3,58,913,8,58,1,59,1,59,1,59,1,59,1,59,0,3,36, - 74,90,60,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38, - 40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82, - 84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118, - 0,16,2,0,32,32,141,141,2,0,84,84,96,96,3,0,4,4,8,8,12,12,4,0,4,4, - 7,8,12,12,147,147,2,0,96,96,140,140,2,0,4,4,8,8,2,0,11,11,42,43, - 2,0,62,62,93,93,2,0,133,133,143,143,3,0,17,17,95,95,170,170,2,0, - 79,79,98,98,1,0,196,197,2,0,208,208,224,224,8,0,37,37,76,76,108, - 108,110,110,132,132,145,145,185,185,190,190,13,0,2,24,26,36,38,75, - 77,81,83,107,109,109,111,112,114,115,117,130,133,144,146,184,186, - 189,191,192,4,0,36,36,62,62,77,77,91,91,1033,0,122,1,0,0,0,2,126, - 1,0,0,0,4,140,1,0,0,0,6,143,1,0,0,0,8,192,1,0,0,0,10,195,1,0,0,0, - 12,201,1,0,0,0,14,205,1,0,0,0,16,211,1,0,0,0,18,229,1,0,0,0,20,232, - 1,0,0,0,22,235,1,0,0,0,24,245,1,0,0,0,26,248,1,0,0,0,28,252,1,0, - 0,0,30,285,1,0,0,0,32,287,1,0,0,0,34,290,1,0,0,0,36,305,1,0,0,0, - 38,367,1,0,0,0,40,372,1,0,0,0,42,383,1,0,0,0,44,385,1,0,0,0,46,391, - 1,0,0,0,48,399,1,0,0,0,50,411,1,0,0,0,52,416,1,0,0,0,54,424,1,0, - 0,0,56,429,1,0,0,0,58,437,1,0,0,0,60,441,1,0,0,0,62,445,1,0,0,0, - 64,454,1,0,0,0,66,468,1,0,0,0,68,470,1,0,0,0,70,520,1,0,0,0,72,522, - 1,0,0,0,74,659,1,0,0,0,76,751,1,0,0,0,78,761,1,0,0,0,80,782,1,0, - 0,0,82,787,1,0,0,0,84,805,1,0,0,0,86,814,1,0,0,0,88,816,1,0,0,0, - 90,831,1,0,0,0,92,844,1,0,0,0,94,854,1,0,0,0,96,858,1,0,0,0,98,869, - 1,0,0,0,100,871,1,0,0,0,102,881,1,0,0,0,104,884,1,0,0,0,106,897, - 1,0,0,0,108,899,1,0,0,0,110,901,1,0,0,0,112,903,1,0,0,0,114,907, - 1,0,0,0,116,912,1,0,0,0,118,914,1,0,0,0,120,123,3,2,1,0,121,123, - 3,6,3,0,122,120,1,0,0,0,122,121,1,0,0,0,123,124,1,0,0,0,124,125, - 5,0,0,1,125,1,1,0,0,0,126,132,3,4,2,0,127,128,5,176,0,0,128,129, - 5,4,0,0,129,131,3,4,2,0,130,127,1,0,0,0,131,134,1,0,0,0,132,130, - 1,0,0,0,132,133,1,0,0,0,133,3,1,0,0,0,134,132,1,0,0,0,135,141,3, - 6,3,0,136,137,5,219,0,0,137,138,3,2,1,0,138,139,5,230,0,0,139,141, - 1,0,0,0,140,135,1,0,0,0,140,136,1,0,0,0,141,5,1,0,0,0,142,144,3, - 8,4,0,143,142,1,0,0,0,143,144,1,0,0,0,144,145,1,0,0,0,145,147,5, - 146,0,0,146,148,5,49,0,0,147,146,1,0,0,0,147,148,1,0,0,0,148,150, - 1,0,0,0,149,151,3,10,5,0,150,149,1,0,0,0,150,151,1,0,0,0,151,152, - 1,0,0,0,152,154,3,72,36,0,153,155,3,12,6,0,154,153,1,0,0,0,154,155, - 1,0,0,0,155,157,1,0,0,0,156,158,3,14,7,0,157,156,1,0,0,0,157,158, - 1,0,0,0,158,160,1,0,0,0,159,161,3,18,9,0,160,159,1,0,0,0,160,161, - 1,0,0,0,161,163,1,0,0,0,162,164,3,20,10,0,163,162,1,0,0,0,163,164, - 1,0,0,0,164,166,1,0,0,0,165,167,3,22,11,0,166,165,1,0,0,0,166,167, - 1,0,0,0,167,170,1,0,0,0,168,169,5,189,0,0,169,171,7,0,0,0,170,168, - 1,0,0,0,170,171,1,0,0,0,171,174,1,0,0,0,172,173,5,189,0,0,173,175, - 5,169,0,0,174,172,1,0,0,0,174,175,1,0,0,0,175,177,1,0,0,0,176,178, - 3,24,12,0,177,176,1,0,0,0,177,178,1,0,0,0,178,180,1,0,0,0,179,181, - 3,16,8,0,180,179,1,0,0,0,180,181,1,0,0,0,181,183,1,0,0,0,182,184, - 3,26,13,0,183,182,1,0,0,0,183,184,1,0,0,0,184,187,1,0,0,0,185,188, - 3,30,15,0,186,188,3,32,16,0,187,185,1,0,0,0,187,186,1,0,0,0,187, - 188,1,0,0,0,188,190,1,0,0,0,189,191,3,34,17,0,190,189,1,0,0,0,190, - 191,1,0,0,0,191,7,1,0,0,0,192,193,5,189,0,0,193,194,3,82,41,0,194, - 9,1,0,0,0,195,196,5,168,0,0,196,199,5,197,0,0,197,198,5,189,0,0, - 198,200,5,164,0,0,199,197,1,0,0,0,199,200,1,0,0,0,200,11,1,0,0,0, - 201,202,5,68,0,0,202,203,3,36,18,0,203,13,1,0,0,0,204,206,7,1,0, - 0,205,204,1,0,0,0,205,206,1,0,0,0,206,207,1,0,0,0,207,208,5,9,0, - 0,208,209,5,90,0,0,209,210,3,72,36,0,210,15,1,0,0,0,211,212,5,188, - 0,0,212,213,3,116,58,0,213,214,5,10,0,0,214,215,5,219,0,0,215,216, - 3,56,28,0,216,226,5,230,0,0,217,218,5,206,0,0,218,219,3,116,58,0, - 219,220,5,10,0,0,220,221,5,219,0,0,221,222,3,56,28,0,222,223,5,230, - 0,0,223,225,1,0,0,0,224,217,1,0,0,0,225,228,1,0,0,0,226,224,1,0, - 0,0,226,227,1,0,0,0,227,17,1,0,0,0,228,226,1,0,0,0,229,230,5,129, - 0,0,230,231,3,74,37,0,231,19,1,0,0,0,232,233,5,187,0,0,233,234,3, - 74,37,0,234,21,1,0,0,0,235,236,5,73,0,0,236,243,5,18,0,0,237,238, - 7,0,0,0,238,239,5,219,0,0,239,240,3,72,36,0,240,241,5,230,0,0,241, - 244,1,0,0,0,242,244,3,72,36,0,243,237,1,0,0,0,243,242,1,0,0,0,244, - 23,1,0,0,0,245,246,5,74,0,0,246,247,3,74,37,0,247,25,1,0,0,0,248, - 249,5,122,0,0,249,250,5,18,0,0,250,251,3,46,23,0,251,27,1,0,0,0, - 252,253,5,122,0,0,253,254,5,18,0,0,254,255,3,72,36,0,255,29,1,0, - 0,0,256,257,5,99,0,0,257,260,3,74,37,0,258,259,5,206,0,0,259,261, - 3,74,37,0,260,258,1,0,0,0,260,261,1,0,0,0,261,266,1,0,0,0,262,263, - 5,189,0,0,263,267,5,164,0,0,264,265,5,18,0,0,265,267,3,72,36,0,266, - 262,1,0,0,0,266,264,1,0,0,0,266,267,1,0,0,0,267,286,1,0,0,0,268, - 269,5,99,0,0,269,272,3,74,37,0,270,271,5,189,0,0,271,273,5,164,0, - 0,272,270,1,0,0,0,272,273,1,0,0,0,273,274,1,0,0,0,274,275,5,118, - 0,0,275,276,3,74,37,0,276,286,1,0,0,0,277,278,5,99,0,0,278,279,3, - 74,37,0,279,280,5,118,0,0,280,283,3,74,37,0,281,282,5,18,0,0,282, - 284,3,72,36,0,283,281,1,0,0,0,283,284,1,0,0,0,284,286,1,0,0,0,285, - 256,1,0,0,0,285,268,1,0,0,0,285,277,1,0,0,0,286,31,1,0,0,0,287,288, - 5,118,0,0,288,289,3,74,37,0,289,33,1,0,0,0,290,291,5,150,0,0,291, - 292,3,52,26,0,292,35,1,0,0,0,293,294,6,18,-1,0,294,296,3,90,45,0, - 295,297,5,61,0,0,296,295,1,0,0,0,296,297,1,0,0,0,297,299,1,0,0,0, - 298,300,3,44,22,0,299,298,1,0,0,0,299,300,1,0,0,0,300,306,1,0,0, - 0,301,302,5,219,0,0,302,303,3,36,18,0,303,304,5,230,0,0,304,306, - 1,0,0,0,305,293,1,0,0,0,305,301,1,0,0,0,306,321,1,0,0,0,307,308, - 10,3,0,0,308,309,3,40,20,0,309,310,3,36,18,4,310,320,1,0,0,0,311, - 313,10,4,0,0,312,314,3,38,19,0,313,312,1,0,0,0,313,314,1,0,0,0,314, - 315,1,0,0,0,315,316,5,90,0,0,316,317,3,36,18,0,317,318,3,42,21,0, - 318,320,1,0,0,0,319,307,1,0,0,0,319,311,1,0,0,0,320,323,1,0,0,0, - 321,319,1,0,0,0,321,322,1,0,0,0,322,37,1,0,0,0,323,321,1,0,0,0,324, - 326,7,2,0,0,325,324,1,0,0,0,325,326,1,0,0,0,326,327,1,0,0,0,327, - 334,5,84,0,0,328,330,5,84,0,0,329,331,7,2,0,0,330,329,1,0,0,0,330, - 331,1,0,0,0,331,334,1,0,0,0,332,334,7,2,0,0,333,325,1,0,0,0,333, - 328,1,0,0,0,333,332,1,0,0,0,334,368,1,0,0,0,335,337,7,3,0,0,336, - 335,1,0,0,0,336,337,1,0,0,0,337,338,1,0,0,0,338,340,7,4,0,0,339, - 341,5,123,0,0,340,339,1,0,0,0,340,341,1,0,0,0,341,350,1,0,0,0,342, - 344,7,4,0,0,343,345,5,123,0,0,344,343,1,0,0,0,344,345,1,0,0,0,345, - 347,1,0,0,0,346,348,7,3,0,0,347,346,1,0,0,0,347,348,1,0,0,0,348, - 350,1,0,0,0,349,336,1,0,0,0,349,342,1,0,0,0,350,368,1,0,0,0,351, - 353,7,5,0,0,352,351,1,0,0,0,352,353,1,0,0,0,353,354,1,0,0,0,354, - 356,5,69,0,0,355,357,5,123,0,0,356,355,1,0,0,0,356,357,1,0,0,0,357, - 366,1,0,0,0,358,360,5,69,0,0,359,361,5,123,0,0,360,359,1,0,0,0,360, - 361,1,0,0,0,361,363,1,0,0,0,362,364,7,5,0,0,363,362,1,0,0,0,363, - 364,1,0,0,0,364,366,1,0,0,0,365,352,1,0,0,0,365,358,1,0,0,0,366, - 368,1,0,0,0,367,333,1,0,0,0,367,349,1,0,0,0,367,365,1,0,0,0,368, - 39,1,0,0,0,369,370,5,31,0,0,370,373,5,90,0,0,371,373,5,206,0,0,372, - 369,1,0,0,0,372,371,1,0,0,0,373,41,1,0,0,0,374,375,5,119,0,0,375, - 384,3,72,36,0,376,377,5,179,0,0,377,378,5,219,0,0,378,379,3,72,36, - 0,379,380,5,230,0,0,380,384,1,0,0,0,381,382,5,179,0,0,382,384,3, - 72,36,0,383,374,1,0,0,0,383,376,1,0,0,0,383,381,1,0,0,0,384,43,1, - 0,0,0,385,386,5,144,0,0,386,389,3,50,25,0,387,388,5,118,0,0,388, - 390,3,50,25,0,389,387,1,0,0,0,389,390,1,0,0,0,390,45,1,0,0,0,391, - 396,3,48,24,0,392,393,5,206,0,0,393,395,3,48,24,0,394,392,1,0,0, - 0,395,398,1,0,0,0,396,394,1,0,0,0,396,397,1,0,0,0,397,47,1,0,0,0, - 398,396,1,0,0,0,399,401,3,74,37,0,400,402,7,6,0,0,401,400,1,0,0, - 0,401,402,1,0,0,0,402,405,1,0,0,0,403,404,5,117,0,0,404,406,7,7, - 0,0,405,403,1,0,0,0,405,406,1,0,0,0,406,409,1,0,0,0,407,408,5,26, - 0,0,408,410,5,199,0,0,409,407,1,0,0,0,409,410,1,0,0,0,410,49,1,0, - 0,0,411,414,3,104,52,0,412,413,5,232,0,0,413,415,3,104,52,0,414, - 412,1,0,0,0,414,415,1,0,0,0,415,51,1,0,0,0,416,421,3,54,27,0,417, - 418,5,206,0,0,418,420,3,54,27,0,419,417,1,0,0,0,420,423,1,0,0,0, - 421,419,1,0,0,0,421,422,1,0,0,0,422,53,1,0,0,0,423,421,1,0,0,0,424, - 425,3,116,58,0,425,426,5,212,0,0,426,427,3,106,53,0,427,55,1,0,0, - 0,428,430,3,58,29,0,429,428,1,0,0,0,429,430,1,0,0,0,430,432,1,0, - 0,0,431,433,3,60,30,0,432,431,1,0,0,0,432,433,1,0,0,0,433,435,1, - 0,0,0,434,436,3,62,31,0,435,434,1,0,0,0,435,436,1,0,0,0,436,57,1, - 0,0,0,437,438,5,126,0,0,438,439,5,18,0,0,439,440,3,72,36,0,440,59, - 1,0,0,0,441,442,5,122,0,0,442,443,5,18,0,0,443,444,3,46,23,0,444, - 61,1,0,0,0,445,446,7,8,0,0,446,447,3,64,32,0,447,63,1,0,0,0,448, - 455,3,66,33,0,449,450,5,16,0,0,450,451,3,66,33,0,451,452,5,6,0,0, - 452,453,3,66,33,0,453,455,1,0,0,0,454,448,1,0,0,0,454,449,1,0,0, - 0,455,65,1,0,0,0,456,457,5,33,0,0,457,469,5,142,0,0,458,459,5,175, - 0,0,459,469,5,128,0,0,460,461,5,175,0,0,461,469,5,64,0,0,462,463, - 3,104,52,0,463,464,5,128,0,0,464,469,1,0,0,0,465,466,3,104,52,0, - 466,467,5,64,0,0,467,469,1,0,0,0,468,456,1,0,0,0,468,458,1,0,0,0, - 468,460,1,0,0,0,468,462,1,0,0,0,468,465,1,0,0,0,469,67,1,0,0,0,470, - 471,3,74,37,0,471,472,5,0,0,1,472,69,1,0,0,0,473,521,3,116,58,0, - 474,475,3,116,58,0,475,476,5,219,0,0,476,477,3,116,58,0,477,484, - 3,70,35,0,478,479,5,206,0,0,479,480,3,116,58,0,480,481,3,70,35,0, - 481,483,1,0,0,0,482,478,1,0,0,0,483,486,1,0,0,0,484,482,1,0,0,0, - 484,485,1,0,0,0,485,487,1,0,0,0,486,484,1,0,0,0,487,488,5,230,0, - 0,488,521,1,0,0,0,489,490,3,116,58,0,490,491,5,219,0,0,491,496,3, - 118,59,0,492,493,5,206,0,0,493,495,3,118,59,0,494,492,1,0,0,0,495, - 498,1,0,0,0,496,494,1,0,0,0,496,497,1,0,0,0,497,499,1,0,0,0,498, - 496,1,0,0,0,499,500,5,230,0,0,500,521,1,0,0,0,501,502,3,116,58,0, - 502,503,5,219,0,0,503,508,3,70,35,0,504,505,5,206,0,0,505,507,3, - 70,35,0,506,504,1,0,0,0,507,510,1,0,0,0,508,506,1,0,0,0,508,509, - 1,0,0,0,509,511,1,0,0,0,510,508,1,0,0,0,511,512,5,230,0,0,512,521, - 1,0,0,0,513,514,3,116,58,0,514,516,5,219,0,0,515,517,3,72,36,0,516, - 515,1,0,0,0,516,517,1,0,0,0,517,518,1,0,0,0,518,519,5,230,0,0,519, - 521,1,0,0,0,520,473,1,0,0,0,520,474,1,0,0,0,520,489,1,0,0,0,520, - 501,1,0,0,0,520,513,1,0,0,0,521,71,1,0,0,0,522,527,3,74,37,0,523, - 524,5,206,0,0,524,526,3,74,37,0,525,523,1,0,0,0,526,529,1,0,0,0, - 527,525,1,0,0,0,527,528,1,0,0,0,528,73,1,0,0,0,529,527,1,0,0,0,530, - 531,6,37,-1,0,531,533,5,19,0,0,532,534,3,74,37,0,533,532,1,0,0,0, - 533,534,1,0,0,0,534,540,1,0,0,0,535,536,5,186,0,0,536,537,3,74,37, - 0,537,538,5,163,0,0,538,539,3,74,37,0,539,541,1,0,0,0,540,535,1, - 0,0,0,541,542,1,0,0,0,542,540,1,0,0,0,542,543,1,0,0,0,543,546,1, - 0,0,0,544,545,5,52,0,0,545,547,3,74,37,0,546,544,1,0,0,0,546,547, - 1,0,0,0,547,548,1,0,0,0,548,549,5,53,0,0,549,660,1,0,0,0,550,551, - 5,20,0,0,551,552,5,219,0,0,552,553,3,74,37,0,553,554,5,10,0,0,554, - 555,3,70,35,0,555,556,5,230,0,0,556,660,1,0,0,0,557,558,5,36,0,0, - 558,660,5,199,0,0,559,560,5,59,0,0,560,561,5,219,0,0,561,562,3,108, - 54,0,562,563,5,68,0,0,563,564,3,74,37,0,564,565,5,230,0,0,565,660, - 1,0,0,0,566,567,5,86,0,0,567,568,3,74,37,0,568,569,3,108,54,0,569, - 660,1,0,0,0,570,571,5,155,0,0,571,572,5,219,0,0,572,573,3,74,37, - 0,573,574,5,68,0,0,574,577,3,74,37,0,575,576,5,65,0,0,576,578,3, - 74,37,0,577,575,1,0,0,0,577,578,1,0,0,0,578,579,1,0,0,0,579,580, - 5,230,0,0,580,660,1,0,0,0,581,582,5,166,0,0,582,660,5,199,0,0,583, - 584,5,171,0,0,584,585,5,219,0,0,585,586,7,9,0,0,586,587,5,199,0, - 0,587,588,5,68,0,0,588,589,3,74,37,0,589,590,5,230,0,0,590,660,1, - 0,0,0,591,592,3,116,58,0,592,594,5,219,0,0,593,595,3,72,36,0,594, - 593,1,0,0,0,594,595,1,0,0,0,595,596,1,0,0,0,596,597,5,230,0,0,597, - 598,1,0,0,0,598,599,5,125,0,0,599,600,5,219,0,0,600,601,3,56,28, - 0,601,602,5,230,0,0,602,660,1,0,0,0,603,604,3,116,58,0,604,606,5, - 219,0,0,605,607,3,72,36,0,606,605,1,0,0,0,606,607,1,0,0,0,607,608, - 1,0,0,0,608,609,5,230,0,0,609,610,1,0,0,0,610,611,5,125,0,0,611, - 612,3,116,58,0,612,660,1,0,0,0,613,619,3,116,58,0,614,616,5,219, - 0,0,615,617,3,72,36,0,616,615,1,0,0,0,616,617,1,0,0,0,617,618,1, - 0,0,0,618,620,5,230,0,0,619,614,1,0,0,0,619,620,1,0,0,0,620,621, - 1,0,0,0,621,623,5,219,0,0,622,624,5,49,0,0,623,622,1,0,0,0,623,624, - 1,0,0,0,624,626,1,0,0,0,625,627,3,76,38,0,626,625,1,0,0,0,626,627, - 1,0,0,0,627,628,1,0,0,0,628,629,5,230,0,0,629,660,1,0,0,0,630,660, - 3,106,53,0,631,632,5,208,0,0,632,660,3,74,37,18,633,634,5,115,0, - 0,634,660,3,74,37,12,635,636,3,94,47,0,636,637,5,210,0,0,637,639, - 1,0,0,0,638,635,1,0,0,0,638,639,1,0,0,0,639,640,1,0,0,0,640,660, - 5,202,0,0,641,642,5,219,0,0,642,643,3,2,1,0,643,644,5,230,0,0,644, - 660,1,0,0,0,645,646,5,219,0,0,646,647,3,74,37,0,647,648,5,230,0, - 0,648,660,1,0,0,0,649,650,5,219,0,0,650,651,3,72,36,0,651,652,5, - 230,0,0,652,660,1,0,0,0,653,655,5,217,0,0,654,656,3,72,36,0,655, - 654,1,0,0,0,655,656,1,0,0,0,656,657,1,0,0,0,657,660,5,229,0,0,658, - 660,3,86,43,0,659,530,1,0,0,0,659,550,1,0,0,0,659,557,1,0,0,0,659, - 559,1,0,0,0,659,566,1,0,0,0,659,570,1,0,0,0,659,581,1,0,0,0,659, - 583,1,0,0,0,659,591,1,0,0,0,659,603,1,0,0,0,659,613,1,0,0,0,659, - 630,1,0,0,0,659,631,1,0,0,0,659,633,1,0,0,0,659,638,1,0,0,0,659, - 641,1,0,0,0,659,645,1,0,0,0,659,649,1,0,0,0,659,653,1,0,0,0,659, - 658,1,0,0,0,660,748,1,0,0,0,661,665,10,17,0,0,662,666,5,202,0,0, - 663,666,5,232,0,0,664,666,5,223,0,0,665,662,1,0,0,0,665,663,1,0, - 0,0,665,664,1,0,0,0,666,667,1,0,0,0,667,747,3,74,37,18,668,672,10, - 16,0,0,669,673,5,224,0,0,670,673,5,208,0,0,671,673,5,207,0,0,672, - 669,1,0,0,0,672,670,1,0,0,0,672,671,1,0,0,0,673,674,1,0,0,0,674, - 747,3,74,37,17,675,694,10,15,0,0,676,695,5,211,0,0,677,695,5,212, - 0,0,678,695,5,221,0,0,679,695,5,218,0,0,680,695,5,213,0,0,681,695, - 5,220,0,0,682,695,5,214,0,0,683,685,5,115,0,0,684,683,1,0,0,0,684, - 685,1,0,0,0,685,686,1,0,0,0,686,688,5,80,0,0,687,689,5,25,0,0,688, - 687,1,0,0,0,688,689,1,0,0,0,689,695,1,0,0,0,690,692,5,115,0,0,691, - 690,1,0,0,0,691,692,1,0,0,0,692,693,1,0,0,0,693,695,7,10,0,0,694, - 676,1,0,0,0,694,677,1,0,0,0,694,678,1,0,0,0,694,679,1,0,0,0,694, - 680,1,0,0,0,694,681,1,0,0,0,694,682,1,0,0,0,694,684,1,0,0,0,694, - 691,1,0,0,0,695,696,1,0,0,0,696,747,3,74,37,16,697,698,10,13,0,0, - 698,699,5,222,0,0,699,747,3,74,37,14,700,701,10,11,0,0,701,702,5, - 6,0,0,702,747,3,74,37,12,703,704,10,10,0,0,704,705,5,121,0,0,705, - 747,3,74,37,11,706,708,10,9,0,0,707,709,5,115,0,0,708,707,1,0,0, - 0,708,709,1,0,0,0,709,710,1,0,0,0,710,711,5,16,0,0,711,712,3,74, - 37,0,712,713,5,6,0,0,713,714,3,74,37,10,714,747,1,0,0,0,715,716, - 10,8,0,0,716,717,5,225,0,0,717,718,3,74,37,0,718,719,5,205,0,0,719, - 720,3,74,37,8,720,747,1,0,0,0,721,722,10,21,0,0,722,723,5,217,0, - 0,723,724,3,74,37,0,724,725,5,229,0,0,725,747,1,0,0,0,726,727,10, - 20,0,0,727,728,5,210,0,0,728,747,5,197,0,0,729,730,10,19,0,0,730, - 731,5,210,0,0,731,747,3,116,58,0,732,733,10,14,0,0,733,735,5,88, - 0,0,734,736,5,115,0,0,735,734,1,0,0,0,735,736,1,0,0,0,736,737,1, - 0,0,0,737,747,5,116,0,0,738,744,10,7,0,0,739,745,3,114,57,0,740, - 741,5,10,0,0,741,745,3,116,58,0,742,743,5,10,0,0,743,745,5,199,0, - 0,744,739,1,0,0,0,744,740,1,0,0,0,744,742,1,0,0,0,745,747,1,0,0, - 0,746,661,1,0,0,0,746,668,1,0,0,0,746,675,1,0,0,0,746,697,1,0,0, - 0,746,700,1,0,0,0,746,703,1,0,0,0,746,706,1,0,0,0,746,715,1,0,0, - 0,746,721,1,0,0,0,746,726,1,0,0,0,746,729,1,0,0,0,746,732,1,0,0, - 0,746,738,1,0,0,0,747,750,1,0,0,0,748,746,1,0,0,0,748,749,1,0,0, - 0,749,75,1,0,0,0,750,748,1,0,0,0,751,756,3,78,39,0,752,753,5,206, - 0,0,753,755,3,78,39,0,754,752,1,0,0,0,755,758,1,0,0,0,756,754,1, - 0,0,0,756,757,1,0,0,0,757,77,1,0,0,0,758,756,1,0,0,0,759,762,3,80, - 40,0,760,762,3,74,37,0,761,759,1,0,0,0,761,760,1,0,0,0,762,79,1, - 0,0,0,763,764,5,219,0,0,764,769,3,116,58,0,765,766,5,206,0,0,766, - 768,3,116,58,0,767,765,1,0,0,0,768,771,1,0,0,0,769,767,1,0,0,0,769, - 770,1,0,0,0,770,772,1,0,0,0,771,769,1,0,0,0,772,773,5,230,0,0,773, - 783,1,0,0,0,774,779,3,116,58,0,775,776,5,206,0,0,776,778,3,116,58, - 0,777,775,1,0,0,0,778,781,1,0,0,0,779,777,1,0,0,0,779,780,1,0,0, - 0,780,783,1,0,0,0,781,779,1,0,0,0,782,763,1,0,0,0,782,774,1,0,0, - 0,783,784,1,0,0,0,784,785,5,201,0,0,785,786,3,74,37,0,786,81,1,0, - 0,0,787,792,3,84,42,0,788,789,5,206,0,0,789,791,3,84,42,0,790,788, - 1,0,0,0,791,794,1,0,0,0,792,790,1,0,0,0,792,793,1,0,0,0,793,83,1, - 0,0,0,794,792,1,0,0,0,795,796,3,116,58,0,796,797,5,10,0,0,797,798, - 5,219,0,0,798,799,3,2,1,0,799,800,5,230,0,0,800,806,1,0,0,0,801, - 802,3,74,37,0,802,803,5,10,0,0,803,804,3,116,58,0,804,806,1,0,0, - 0,805,795,1,0,0,0,805,801,1,0,0,0,806,85,1,0,0,0,807,815,5,200,0, - 0,808,809,3,94,47,0,809,810,5,210,0,0,810,812,1,0,0,0,811,808,1, - 0,0,0,811,812,1,0,0,0,812,813,1,0,0,0,813,815,3,88,44,0,814,807, - 1,0,0,0,814,811,1,0,0,0,815,87,1,0,0,0,816,821,3,116,58,0,817,818, - 5,210,0,0,818,820,3,116,58,0,819,817,1,0,0,0,820,823,1,0,0,0,821, - 819,1,0,0,0,821,822,1,0,0,0,822,89,1,0,0,0,823,821,1,0,0,0,824,825, - 6,45,-1,0,825,832,3,94,47,0,826,832,3,92,46,0,827,828,5,219,0,0, - 828,829,3,2,1,0,829,830,5,230,0,0,830,832,1,0,0,0,831,824,1,0,0, - 0,831,826,1,0,0,0,831,827,1,0,0,0,832,841,1,0,0,0,833,837,10,1,0, - 0,834,838,3,114,57,0,835,836,5,10,0,0,836,838,3,116,58,0,837,834, - 1,0,0,0,837,835,1,0,0,0,838,840,1,0,0,0,839,833,1,0,0,0,840,843, - 1,0,0,0,841,839,1,0,0,0,841,842,1,0,0,0,842,91,1,0,0,0,843,841,1, - 0,0,0,844,845,3,116,58,0,845,847,5,219,0,0,846,848,3,96,48,0,847, - 846,1,0,0,0,847,848,1,0,0,0,848,849,1,0,0,0,849,850,5,230,0,0,850, - 93,1,0,0,0,851,852,3,100,50,0,852,853,5,210,0,0,853,855,1,0,0,0, - 854,851,1,0,0,0,854,855,1,0,0,0,855,856,1,0,0,0,856,857,3,116,58, - 0,857,95,1,0,0,0,858,863,3,98,49,0,859,860,5,206,0,0,860,862,3,98, - 49,0,861,859,1,0,0,0,862,865,1,0,0,0,863,861,1,0,0,0,863,864,1,0, - 0,0,864,97,1,0,0,0,865,863,1,0,0,0,866,870,3,88,44,0,867,870,3,92, - 46,0,868,870,3,106,53,0,869,866,1,0,0,0,869,867,1,0,0,0,869,868, - 1,0,0,0,870,99,1,0,0,0,871,872,3,116,58,0,872,101,1,0,0,0,873,882, - 5,195,0,0,874,875,5,210,0,0,875,882,7,11,0,0,876,877,5,197,0,0,877, - 879,5,210,0,0,878,880,7,11,0,0,879,878,1,0,0,0,879,880,1,0,0,0,880, - 882,1,0,0,0,881,873,1,0,0,0,881,874,1,0,0,0,881,876,1,0,0,0,882, - 103,1,0,0,0,883,885,7,12,0,0,884,883,1,0,0,0,884,885,1,0,0,0,885, - 892,1,0,0,0,886,893,3,102,51,0,887,893,5,196,0,0,888,893,5,197,0, - 0,889,893,5,198,0,0,890,893,5,82,0,0,891,893,5,113,0,0,892,886,1, - 0,0,0,892,887,1,0,0,0,892,888,1,0,0,0,892,889,1,0,0,0,892,890,1, - 0,0,0,892,891,1,0,0,0,893,105,1,0,0,0,894,898,3,104,52,0,895,898, - 5,199,0,0,896,898,5,116,0,0,897,894,1,0,0,0,897,895,1,0,0,0,897, - 896,1,0,0,0,898,107,1,0,0,0,899,900,7,13,0,0,900,109,1,0,0,0,901, - 902,7,14,0,0,902,111,1,0,0,0,903,904,7,15,0,0,904,113,1,0,0,0,905, - 908,5,194,0,0,906,908,3,112,56,0,907,905,1,0,0,0,907,906,1,0,0,0, - 908,115,1,0,0,0,909,913,5,194,0,0,910,913,3,108,54,0,911,913,3,110, - 55,0,912,909,1,0,0,0,912,910,1,0,0,0,912,911,1,0,0,0,913,117,1,0, - 0,0,914,915,5,199,0,0,915,916,5,212,0,0,916,917,3,104,52,0,917,119, - 1,0,0,0,115,122,132,140,143,147,150,154,157,160,163,166,170,174, - 177,180,183,187,190,199,205,226,243,260,266,272,283,285,296,299, - 305,313,319,321,325,330,333,336,340,344,347,349,352,356,360,363, - 365,367,372,383,389,396,401,405,409,414,421,429,432,435,454,468, - 484,496,508,516,520,527,533,542,546,577,594,606,616,619,623,626, - 638,655,659,665,672,684,688,691,694,708,735,744,746,748,756,761, - 769,779,782,792,805,811,814,821,831,837,841,847,854,863,869,879, - 881,884,892,897,907,912 + 37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,742,8, + 37,1,37,1,37,1,37,1,37,1,37,1,37,1,37,3,37,751,8,37,5,37,753,8,37, + 10,37,12,37,756,9,37,1,38,1,38,1,38,5,38,761,8,38,10,38,12,38,764, + 9,38,1,39,1,39,3,39,768,8,39,1,40,1,40,1,40,1,40,5,40,774,8,40,10, + 40,12,40,777,9,40,1,40,1,40,1,40,1,40,1,40,5,40,784,8,40,10,40,12, + 40,787,9,40,3,40,789,8,40,1,40,1,40,1,40,1,41,1,41,1,41,5,41,797, + 8,41,10,41,12,41,800,9,41,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42, + 1,42,1,42,3,42,812,8,42,1,43,1,43,1,43,1,43,3,43,818,8,43,1,43,3, + 43,821,8,43,1,44,1,44,1,44,5,44,826,8,44,10,44,12,44,829,9,44,1, + 45,1,45,1,45,1,45,1,45,1,45,1,45,3,45,838,8,45,1,45,1,45,1,45,1, + 45,3,45,844,8,45,5,45,846,8,45,10,45,12,45,849,9,45,1,46,1,46,1, + 46,3,46,854,8,46,1,46,1,46,1,47,1,47,1,47,3,47,861,8,47,1,47,1,47, + 1,48,1,48,1,48,5,48,868,8,48,10,48,12,48,871,9,48,1,49,1,49,1,49, + 3,49,876,8,49,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1,51,3,51,886,8, + 51,3,51,888,8,51,1,52,3,52,891,8,52,1,52,1,52,1,52,1,52,1,52,1,52, + 3,52,899,8,52,1,53,1,53,1,53,3,53,904,8,53,1,54,1,54,1,55,1,55,1, + 56,1,56,1,57,1,57,3,57,914,8,57,1,58,1,58,1,58,3,58,919,8,58,1,59, + 1,59,1,59,1,59,1,59,0,3,36,74,90,60,0,2,4,6,8,10,12,14,16,18,20, + 22,24,26,28,30,32,34,36,38,40,42,44,46,48,50,52,54,56,58,60,62,64, + 66,68,70,72,74,76,78,80,82,84,86,88,90,92,94,96,98,100,102,104,106, + 108,110,112,114,116,118,0,16,2,0,32,32,141,141,2,0,84,84,96,96,3, + 0,4,4,8,8,12,12,4,0,4,4,7,8,12,12,147,147,2,0,96,96,140,140,2,0, + 4,4,8,8,2,0,11,11,42,43,2,0,62,62,93,93,2,0,133,133,143,143,3,0, + 17,17,95,95,170,170,2,0,79,79,98,98,1,0,196,197,2,0,208,208,228, + 228,8,0,37,37,76,76,108,108,110,110,132,132,145,145,185,185,190, + 190,13,0,2,24,26,36,38,75,77,81,83,107,109,109,111,112,114,115,117, + 130,133,144,146,184,186,189,191,192,4,0,36,36,62,62,77,77,91,91, + 1045,0,122,1,0,0,0,2,126,1,0,0,0,4,140,1,0,0,0,6,143,1,0,0,0,8,192, + 1,0,0,0,10,195,1,0,0,0,12,201,1,0,0,0,14,205,1,0,0,0,16,211,1,0, + 0,0,18,229,1,0,0,0,20,232,1,0,0,0,22,235,1,0,0,0,24,245,1,0,0,0, + 26,248,1,0,0,0,28,252,1,0,0,0,30,285,1,0,0,0,32,287,1,0,0,0,34,290, + 1,0,0,0,36,305,1,0,0,0,38,367,1,0,0,0,40,372,1,0,0,0,42,383,1,0, + 0,0,44,385,1,0,0,0,46,391,1,0,0,0,48,399,1,0,0,0,50,411,1,0,0,0, + 52,416,1,0,0,0,54,424,1,0,0,0,56,429,1,0,0,0,58,437,1,0,0,0,60,441, + 1,0,0,0,62,445,1,0,0,0,64,454,1,0,0,0,66,468,1,0,0,0,68,470,1,0, + 0,0,70,520,1,0,0,0,72,522,1,0,0,0,74,659,1,0,0,0,76,757,1,0,0,0, + 78,767,1,0,0,0,80,788,1,0,0,0,82,793,1,0,0,0,84,811,1,0,0,0,86,820, + 1,0,0,0,88,822,1,0,0,0,90,837,1,0,0,0,92,850,1,0,0,0,94,860,1,0, + 0,0,96,864,1,0,0,0,98,875,1,0,0,0,100,877,1,0,0,0,102,887,1,0,0, + 0,104,890,1,0,0,0,106,903,1,0,0,0,108,905,1,0,0,0,110,907,1,0,0, + 0,112,909,1,0,0,0,114,913,1,0,0,0,116,918,1,0,0,0,118,920,1,0,0, + 0,120,123,3,2,1,0,121,123,3,6,3,0,122,120,1,0,0,0,122,121,1,0,0, + 0,123,124,1,0,0,0,124,125,5,0,0,1,125,1,1,0,0,0,126,132,3,4,2,0, + 127,128,5,176,0,0,128,129,5,4,0,0,129,131,3,4,2,0,130,127,1,0,0, + 0,131,134,1,0,0,0,132,130,1,0,0,0,132,133,1,0,0,0,133,3,1,0,0,0, + 134,132,1,0,0,0,135,141,3,6,3,0,136,137,5,220,0,0,137,138,3,2,1, + 0,138,139,5,236,0,0,139,141,1,0,0,0,140,135,1,0,0,0,140,136,1,0, + 0,0,141,5,1,0,0,0,142,144,3,8,4,0,143,142,1,0,0,0,143,144,1,0,0, + 0,144,145,1,0,0,0,145,147,5,146,0,0,146,148,5,49,0,0,147,146,1,0, + 0,0,147,148,1,0,0,0,148,150,1,0,0,0,149,151,3,10,5,0,150,149,1,0, + 0,0,150,151,1,0,0,0,151,152,1,0,0,0,152,154,3,72,36,0,153,155,3, + 12,6,0,154,153,1,0,0,0,154,155,1,0,0,0,155,157,1,0,0,0,156,158,3, + 14,7,0,157,156,1,0,0,0,157,158,1,0,0,0,158,160,1,0,0,0,159,161,3, + 18,9,0,160,159,1,0,0,0,160,161,1,0,0,0,161,163,1,0,0,0,162,164,3, + 20,10,0,163,162,1,0,0,0,163,164,1,0,0,0,164,166,1,0,0,0,165,167, + 3,22,11,0,166,165,1,0,0,0,166,167,1,0,0,0,167,170,1,0,0,0,168,169, + 5,189,0,0,169,171,7,0,0,0,170,168,1,0,0,0,170,171,1,0,0,0,171,174, + 1,0,0,0,172,173,5,189,0,0,173,175,5,169,0,0,174,172,1,0,0,0,174, + 175,1,0,0,0,175,177,1,0,0,0,176,178,3,24,12,0,177,176,1,0,0,0,177, + 178,1,0,0,0,178,180,1,0,0,0,179,181,3,16,8,0,180,179,1,0,0,0,180, + 181,1,0,0,0,181,183,1,0,0,0,182,184,3,26,13,0,183,182,1,0,0,0,183, + 184,1,0,0,0,184,187,1,0,0,0,185,188,3,30,15,0,186,188,3,32,16,0, + 187,185,1,0,0,0,187,186,1,0,0,0,187,188,1,0,0,0,188,190,1,0,0,0, + 189,191,3,34,17,0,190,189,1,0,0,0,190,191,1,0,0,0,191,7,1,0,0,0, + 192,193,5,189,0,0,193,194,3,82,41,0,194,9,1,0,0,0,195,196,5,168, + 0,0,196,199,5,197,0,0,197,198,5,189,0,0,198,200,5,164,0,0,199,197, + 1,0,0,0,199,200,1,0,0,0,200,11,1,0,0,0,201,202,5,68,0,0,202,203, + 3,36,18,0,203,13,1,0,0,0,204,206,7,1,0,0,205,204,1,0,0,0,205,206, + 1,0,0,0,206,207,1,0,0,0,207,208,5,9,0,0,208,209,5,90,0,0,209,210, + 3,72,36,0,210,15,1,0,0,0,211,212,5,188,0,0,212,213,3,116,58,0,213, + 214,5,10,0,0,214,215,5,220,0,0,215,216,3,56,28,0,216,226,5,236,0, + 0,217,218,5,206,0,0,218,219,3,116,58,0,219,220,5,10,0,0,220,221, + 5,220,0,0,221,222,3,56,28,0,222,223,5,236,0,0,223,225,1,0,0,0,224, + 217,1,0,0,0,225,228,1,0,0,0,226,224,1,0,0,0,226,227,1,0,0,0,227, + 17,1,0,0,0,228,226,1,0,0,0,229,230,5,129,0,0,230,231,3,74,37,0,231, + 19,1,0,0,0,232,233,5,187,0,0,233,234,3,74,37,0,234,21,1,0,0,0,235, + 236,5,73,0,0,236,243,5,18,0,0,237,238,7,0,0,0,238,239,5,220,0,0, + 239,240,3,72,36,0,240,241,5,236,0,0,241,244,1,0,0,0,242,244,3,72, + 36,0,243,237,1,0,0,0,243,242,1,0,0,0,244,23,1,0,0,0,245,246,5,74, + 0,0,246,247,3,74,37,0,247,25,1,0,0,0,248,249,5,122,0,0,249,250,5, + 18,0,0,250,251,3,46,23,0,251,27,1,0,0,0,252,253,5,122,0,0,253,254, + 5,18,0,0,254,255,3,72,36,0,255,29,1,0,0,0,256,257,5,99,0,0,257,260, + 3,74,37,0,258,259,5,206,0,0,259,261,3,74,37,0,260,258,1,0,0,0,260, + 261,1,0,0,0,261,266,1,0,0,0,262,263,5,189,0,0,263,267,5,164,0,0, + 264,265,5,18,0,0,265,267,3,72,36,0,266,262,1,0,0,0,266,264,1,0,0, + 0,266,267,1,0,0,0,267,286,1,0,0,0,268,269,5,99,0,0,269,272,3,74, + 37,0,270,271,5,189,0,0,271,273,5,164,0,0,272,270,1,0,0,0,272,273, + 1,0,0,0,273,274,1,0,0,0,274,275,5,118,0,0,275,276,3,74,37,0,276, + 286,1,0,0,0,277,278,5,99,0,0,278,279,3,74,37,0,279,280,5,118,0,0, + 280,283,3,74,37,0,281,282,5,18,0,0,282,284,3,72,36,0,283,281,1,0, + 0,0,283,284,1,0,0,0,284,286,1,0,0,0,285,256,1,0,0,0,285,268,1,0, + 0,0,285,277,1,0,0,0,286,31,1,0,0,0,287,288,5,118,0,0,288,289,3,74, + 37,0,289,33,1,0,0,0,290,291,5,150,0,0,291,292,3,52,26,0,292,35,1, + 0,0,0,293,294,6,18,-1,0,294,296,3,90,45,0,295,297,5,61,0,0,296,295, + 1,0,0,0,296,297,1,0,0,0,297,299,1,0,0,0,298,300,3,44,22,0,299,298, + 1,0,0,0,299,300,1,0,0,0,300,306,1,0,0,0,301,302,5,220,0,0,302,303, + 3,36,18,0,303,304,5,236,0,0,304,306,1,0,0,0,305,293,1,0,0,0,305, + 301,1,0,0,0,306,321,1,0,0,0,307,308,10,3,0,0,308,309,3,40,20,0,309, + 310,3,36,18,4,310,320,1,0,0,0,311,313,10,4,0,0,312,314,3,38,19,0, + 313,312,1,0,0,0,313,314,1,0,0,0,314,315,1,0,0,0,315,316,5,90,0,0, + 316,317,3,36,18,0,317,318,3,42,21,0,318,320,1,0,0,0,319,307,1,0, + 0,0,319,311,1,0,0,0,320,323,1,0,0,0,321,319,1,0,0,0,321,322,1,0, + 0,0,322,37,1,0,0,0,323,321,1,0,0,0,324,326,7,2,0,0,325,324,1,0,0, + 0,325,326,1,0,0,0,326,327,1,0,0,0,327,334,5,84,0,0,328,330,5,84, + 0,0,329,331,7,2,0,0,330,329,1,0,0,0,330,331,1,0,0,0,331,334,1,0, + 0,0,332,334,7,2,0,0,333,325,1,0,0,0,333,328,1,0,0,0,333,332,1,0, + 0,0,334,368,1,0,0,0,335,337,7,3,0,0,336,335,1,0,0,0,336,337,1,0, + 0,0,337,338,1,0,0,0,338,340,7,4,0,0,339,341,5,123,0,0,340,339,1, + 0,0,0,340,341,1,0,0,0,341,350,1,0,0,0,342,344,7,4,0,0,343,345,5, + 123,0,0,344,343,1,0,0,0,344,345,1,0,0,0,345,347,1,0,0,0,346,348, + 7,3,0,0,347,346,1,0,0,0,347,348,1,0,0,0,348,350,1,0,0,0,349,336, + 1,0,0,0,349,342,1,0,0,0,350,368,1,0,0,0,351,353,7,5,0,0,352,351, + 1,0,0,0,352,353,1,0,0,0,353,354,1,0,0,0,354,356,5,69,0,0,355,357, + 5,123,0,0,356,355,1,0,0,0,356,357,1,0,0,0,357,366,1,0,0,0,358,360, + 5,69,0,0,359,361,5,123,0,0,360,359,1,0,0,0,360,361,1,0,0,0,361,363, + 1,0,0,0,362,364,7,5,0,0,363,362,1,0,0,0,363,364,1,0,0,0,364,366, + 1,0,0,0,365,352,1,0,0,0,365,358,1,0,0,0,366,368,1,0,0,0,367,333, + 1,0,0,0,367,349,1,0,0,0,367,365,1,0,0,0,368,39,1,0,0,0,369,370,5, + 31,0,0,370,373,5,90,0,0,371,373,5,206,0,0,372,369,1,0,0,0,372,371, + 1,0,0,0,373,41,1,0,0,0,374,375,5,119,0,0,375,384,3,72,36,0,376,377, + 5,179,0,0,377,378,5,220,0,0,378,379,3,72,36,0,379,380,5,236,0,0, + 380,384,1,0,0,0,381,382,5,179,0,0,382,384,3,72,36,0,383,374,1,0, + 0,0,383,376,1,0,0,0,383,381,1,0,0,0,384,43,1,0,0,0,385,386,5,144, + 0,0,386,389,3,50,25,0,387,388,5,118,0,0,388,390,3,50,25,0,389,387, + 1,0,0,0,389,390,1,0,0,0,390,45,1,0,0,0,391,396,3,48,24,0,392,393, + 5,206,0,0,393,395,3,48,24,0,394,392,1,0,0,0,395,398,1,0,0,0,396, + 394,1,0,0,0,396,397,1,0,0,0,397,47,1,0,0,0,398,396,1,0,0,0,399,401, + 3,74,37,0,400,402,7,6,0,0,401,400,1,0,0,0,401,402,1,0,0,0,402,405, + 1,0,0,0,403,404,5,117,0,0,404,406,7,7,0,0,405,403,1,0,0,0,405,406, + 1,0,0,0,406,409,1,0,0,0,407,408,5,26,0,0,408,410,5,199,0,0,409,407, + 1,0,0,0,409,410,1,0,0,0,410,49,1,0,0,0,411,414,3,104,52,0,412,413, + 5,238,0,0,413,415,3,104,52,0,414,412,1,0,0,0,414,415,1,0,0,0,415, + 51,1,0,0,0,416,421,3,54,27,0,417,418,5,206,0,0,418,420,3,54,27,0, + 419,417,1,0,0,0,420,423,1,0,0,0,421,419,1,0,0,0,421,422,1,0,0,0, + 422,53,1,0,0,0,423,421,1,0,0,0,424,425,3,116,58,0,425,426,5,212, + 0,0,426,427,3,106,53,0,427,55,1,0,0,0,428,430,3,58,29,0,429,428, + 1,0,0,0,429,430,1,0,0,0,430,432,1,0,0,0,431,433,3,60,30,0,432,431, + 1,0,0,0,432,433,1,0,0,0,433,435,1,0,0,0,434,436,3,62,31,0,435,434, + 1,0,0,0,435,436,1,0,0,0,436,57,1,0,0,0,437,438,5,126,0,0,438,439, + 5,18,0,0,439,440,3,72,36,0,440,59,1,0,0,0,441,442,5,122,0,0,442, + 443,5,18,0,0,443,444,3,46,23,0,444,61,1,0,0,0,445,446,7,8,0,0,446, + 447,3,64,32,0,447,63,1,0,0,0,448,455,3,66,33,0,449,450,5,16,0,0, + 450,451,3,66,33,0,451,452,5,6,0,0,452,453,3,66,33,0,453,455,1,0, + 0,0,454,448,1,0,0,0,454,449,1,0,0,0,455,65,1,0,0,0,456,457,5,33, + 0,0,457,469,5,142,0,0,458,459,5,175,0,0,459,469,5,128,0,0,460,461, + 5,175,0,0,461,469,5,64,0,0,462,463,3,104,52,0,463,464,5,128,0,0, + 464,469,1,0,0,0,465,466,3,104,52,0,466,467,5,64,0,0,467,469,1,0, + 0,0,468,456,1,0,0,0,468,458,1,0,0,0,468,460,1,0,0,0,468,462,1,0, + 0,0,468,465,1,0,0,0,469,67,1,0,0,0,470,471,3,74,37,0,471,472,5,0, + 0,1,472,69,1,0,0,0,473,521,3,116,58,0,474,475,3,116,58,0,475,476, + 5,220,0,0,476,477,3,116,58,0,477,484,3,70,35,0,478,479,5,206,0,0, + 479,480,3,116,58,0,480,481,3,70,35,0,481,483,1,0,0,0,482,478,1,0, + 0,0,483,486,1,0,0,0,484,482,1,0,0,0,484,485,1,0,0,0,485,487,1,0, + 0,0,486,484,1,0,0,0,487,488,5,236,0,0,488,521,1,0,0,0,489,490,3, + 116,58,0,490,491,5,220,0,0,491,496,3,118,59,0,492,493,5,206,0,0, + 493,495,3,118,59,0,494,492,1,0,0,0,495,498,1,0,0,0,496,494,1,0,0, + 0,496,497,1,0,0,0,497,499,1,0,0,0,498,496,1,0,0,0,499,500,5,236, + 0,0,500,521,1,0,0,0,501,502,3,116,58,0,502,503,5,220,0,0,503,508, + 3,70,35,0,504,505,5,206,0,0,505,507,3,70,35,0,506,504,1,0,0,0,507, + 510,1,0,0,0,508,506,1,0,0,0,508,509,1,0,0,0,509,511,1,0,0,0,510, + 508,1,0,0,0,511,512,5,236,0,0,512,521,1,0,0,0,513,514,3,116,58,0, + 514,516,5,220,0,0,515,517,3,72,36,0,516,515,1,0,0,0,516,517,1,0, + 0,0,517,518,1,0,0,0,518,519,5,236,0,0,519,521,1,0,0,0,520,473,1, + 0,0,0,520,474,1,0,0,0,520,489,1,0,0,0,520,501,1,0,0,0,520,513,1, + 0,0,0,521,71,1,0,0,0,522,527,3,74,37,0,523,524,5,206,0,0,524,526, + 3,74,37,0,525,523,1,0,0,0,526,529,1,0,0,0,527,525,1,0,0,0,527,528, + 1,0,0,0,528,73,1,0,0,0,529,527,1,0,0,0,530,531,6,37,-1,0,531,533, + 5,19,0,0,532,534,3,74,37,0,533,532,1,0,0,0,533,534,1,0,0,0,534,540, + 1,0,0,0,535,536,5,186,0,0,536,537,3,74,37,0,537,538,5,163,0,0,538, + 539,3,74,37,0,539,541,1,0,0,0,540,535,1,0,0,0,541,542,1,0,0,0,542, + 540,1,0,0,0,542,543,1,0,0,0,543,546,1,0,0,0,544,545,5,52,0,0,545, + 547,3,74,37,0,546,544,1,0,0,0,546,547,1,0,0,0,547,548,1,0,0,0,548, + 549,5,53,0,0,549,660,1,0,0,0,550,551,5,20,0,0,551,552,5,220,0,0, + 552,553,3,74,37,0,553,554,5,10,0,0,554,555,3,70,35,0,555,556,5,236, + 0,0,556,660,1,0,0,0,557,558,5,36,0,0,558,660,5,199,0,0,559,560,5, + 59,0,0,560,561,5,220,0,0,561,562,3,108,54,0,562,563,5,68,0,0,563, + 564,3,74,37,0,564,565,5,236,0,0,565,660,1,0,0,0,566,567,5,86,0,0, + 567,568,3,74,37,0,568,569,3,108,54,0,569,660,1,0,0,0,570,571,5,155, + 0,0,571,572,5,220,0,0,572,573,3,74,37,0,573,574,5,68,0,0,574,577, + 3,74,37,0,575,576,5,65,0,0,576,578,3,74,37,0,577,575,1,0,0,0,577, + 578,1,0,0,0,578,579,1,0,0,0,579,580,5,236,0,0,580,660,1,0,0,0,581, + 582,5,166,0,0,582,660,5,199,0,0,583,584,5,171,0,0,584,585,5,220, + 0,0,585,586,7,9,0,0,586,587,5,199,0,0,587,588,5,68,0,0,588,589,3, + 74,37,0,589,590,5,236,0,0,590,660,1,0,0,0,591,592,3,116,58,0,592, + 594,5,220,0,0,593,595,3,72,36,0,594,593,1,0,0,0,594,595,1,0,0,0, + 595,596,1,0,0,0,596,597,5,236,0,0,597,598,1,0,0,0,598,599,5,125, + 0,0,599,600,5,220,0,0,600,601,3,56,28,0,601,602,5,236,0,0,602,660, + 1,0,0,0,603,604,3,116,58,0,604,606,5,220,0,0,605,607,3,72,36,0,606, + 605,1,0,0,0,606,607,1,0,0,0,607,608,1,0,0,0,608,609,5,236,0,0,609, + 610,1,0,0,0,610,611,5,125,0,0,611,612,3,116,58,0,612,660,1,0,0,0, + 613,619,3,116,58,0,614,616,5,220,0,0,615,617,3,72,36,0,616,615,1, + 0,0,0,616,617,1,0,0,0,617,618,1,0,0,0,618,620,5,236,0,0,619,614, + 1,0,0,0,619,620,1,0,0,0,620,621,1,0,0,0,621,623,5,220,0,0,622,624, + 5,49,0,0,623,622,1,0,0,0,623,624,1,0,0,0,624,626,1,0,0,0,625,627, + 3,76,38,0,626,625,1,0,0,0,626,627,1,0,0,0,627,628,1,0,0,0,628,629, + 5,236,0,0,629,660,1,0,0,0,630,660,3,106,53,0,631,632,5,208,0,0,632, + 660,3,74,37,18,633,634,5,115,0,0,634,660,3,74,37,12,635,636,3,94, + 47,0,636,637,5,210,0,0,637,639,1,0,0,0,638,635,1,0,0,0,638,639,1, + 0,0,0,639,640,1,0,0,0,640,660,5,202,0,0,641,642,5,220,0,0,642,643, + 3,2,1,0,643,644,5,236,0,0,644,660,1,0,0,0,645,646,5,220,0,0,646, + 647,3,74,37,0,647,648,5,236,0,0,648,660,1,0,0,0,649,650,5,220,0, + 0,650,651,3,72,36,0,651,652,5,236,0,0,652,660,1,0,0,0,653,655,5, + 219,0,0,654,656,3,72,36,0,655,654,1,0,0,0,655,656,1,0,0,0,656,657, + 1,0,0,0,657,660,5,235,0,0,658,660,3,86,43,0,659,530,1,0,0,0,659, + 550,1,0,0,0,659,557,1,0,0,0,659,559,1,0,0,0,659,566,1,0,0,0,659, + 570,1,0,0,0,659,581,1,0,0,0,659,583,1,0,0,0,659,591,1,0,0,0,659, + 603,1,0,0,0,659,613,1,0,0,0,659,630,1,0,0,0,659,631,1,0,0,0,659, + 633,1,0,0,0,659,638,1,0,0,0,659,641,1,0,0,0,659,645,1,0,0,0,659, + 649,1,0,0,0,659,653,1,0,0,0,659,658,1,0,0,0,660,754,1,0,0,0,661, + 665,10,17,0,0,662,666,5,202,0,0,663,666,5,238,0,0,664,666,5,227, + 0,0,665,662,1,0,0,0,665,663,1,0,0,0,665,664,1,0,0,0,666,667,1,0, + 0,0,667,753,3,74,37,18,668,672,10,16,0,0,669,673,5,228,0,0,670,673, + 5,208,0,0,671,673,5,207,0,0,672,669,1,0,0,0,672,670,1,0,0,0,672, + 671,1,0,0,0,673,674,1,0,0,0,674,753,3,74,37,17,675,700,10,15,0,0, + 676,701,5,211,0,0,677,701,5,212,0,0,678,701,5,223,0,0,679,701,5, + 221,0,0,680,701,5,222,0,0,681,701,5,213,0,0,682,701,5,214,0,0,683, + 685,5,115,0,0,684,683,1,0,0,0,684,685,1,0,0,0,685,686,1,0,0,0,686, + 688,5,80,0,0,687,689,5,25,0,0,688,687,1,0,0,0,688,689,1,0,0,0,689, + 701,1,0,0,0,690,692,5,115,0,0,691,690,1,0,0,0,691,692,1,0,0,0,692, + 693,1,0,0,0,693,701,7,10,0,0,694,701,5,232,0,0,695,701,5,233,0,0, + 696,701,5,225,0,0,697,701,5,216,0,0,698,701,5,217,0,0,699,701,5, + 224,0,0,700,676,1,0,0,0,700,677,1,0,0,0,700,678,1,0,0,0,700,679, + 1,0,0,0,700,680,1,0,0,0,700,681,1,0,0,0,700,682,1,0,0,0,700,684, + 1,0,0,0,700,691,1,0,0,0,700,694,1,0,0,0,700,695,1,0,0,0,700,696, + 1,0,0,0,700,697,1,0,0,0,700,698,1,0,0,0,700,699,1,0,0,0,701,702, + 1,0,0,0,702,753,3,74,37,16,703,704,10,13,0,0,704,705,5,226,0,0,705, + 753,3,74,37,14,706,707,10,11,0,0,707,708,5,6,0,0,708,753,3,74,37, + 12,709,710,10,10,0,0,710,711,5,121,0,0,711,753,3,74,37,11,712,714, + 10,9,0,0,713,715,5,115,0,0,714,713,1,0,0,0,714,715,1,0,0,0,715,716, + 1,0,0,0,716,717,5,16,0,0,717,718,3,74,37,0,718,719,5,6,0,0,719,720, + 3,74,37,10,720,753,1,0,0,0,721,722,10,8,0,0,722,723,5,229,0,0,723, + 724,3,74,37,0,724,725,5,205,0,0,725,726,3,74,37,8,726,753,1,0,0, + 0,727,728,10,21,0,0,728,729,5,219,0,0,729,730,3,74,37,0,730,731, + 5,235,0,0,731,753,1,0,0,0,732,733,10,20,0,0,733,734,5,210,0,0,734, + 753,5,197,0,0,735,736,10,19,0,0,736,737,5,210,0,0,737,753,3,116, + 58,0,738,739,10,14,0,0,739,741,5,88,0,0,740,742,5,115,0,0,741,740, + 1,0,0,0,741,742,1,0,0,0,742,743,1,0,0,0,743,753,5,116,0,0,744,750, + 10,7,0,0,745,751,3,114,57,0,746,747,5,10,0,0,747,751,3,116,58,0, + 748,749,5,10,0,0,749,751,5,199,0,0,750,745,1,0,0,0,750,746,1,0,0, + 0,750,748,1,0,0,0,751,753,1,0,0,0,752,661,1,0,0,0,752,668,1,0,0, + 0,752,675,1,0,0,0,752,703,1,0,0,0,752,706,1,0,0,0,752,709,1,0,0, + 0,752,712,1,0,0,0,752,721,1,0,0,0,752,727,1,0,0,0,752,732,1,0,0, + 0,752,735,1,0,0,0,752,738,1,0,0,0,752,744,1,0,0,0,753,756,1,0,0, + 0,754,752,1,0,0,0,754,755,1,0,0,0,755,75,1,0,0,0,756,754,1,0,0,0, + 757,762,3,78,39,0,758,759,5,206,0,0,759,761,3,78,39,0,760,758,1, + 0,0,0,761,764,1,0,0,0,762,760,1,0,0,0,762,763,1,0,0,0,763,77,1,0, + 0,0,764,762,1,0,0,0,765,768,3,80,40,0,766,768,3,74,37,0,767,765, + 1,0,0,0,767,766,1,0,0,0,768,79,1,0,0,0,769,770,5,220,0,0,770,775, + 3,116,58,0,771,772,5,206,0,0,772,774,3,116,58,0,773,771,1,0,0,0, + 774,777,1,0,0,0,775,773,1,0,0,0,775,776,1,0,0,0,776,778,1,0,0,0, + 777,775,1,0,0,0,778,779,5,236,0,0,779,789,1,0,0,0,780,785,3,116, + 58,0,781,782,5,206,0,0,782,784,3,116,58,0,783,781,1,0,0,0,784,787, + 1,0,0,0,785,783,1,0,0,0,785,786,1,0,0,0,786,789,1,0,0,0,787,785, + 1,0,0,0,788,769,1,0,0,0,788,780,1,0,0,0,789,790,1,0,0,0,790,791, + 5,201,0,0,791,792,3,74,37,0,792,81,1,0,0,0,793,798,3,84,42,0,794, + 795,5,206,0,0,795,797,3,84,42,0,796,794,1,0,0,0,797,800,1,0,0,0, + 798,796,1,0,0,0,798,799,1,0,0,0,799,83,1,0,0,0,800,798,1,0,0,0,801, + 802,3,116,58,0,802,803,5,10,0,0,803,804,5,220,0,0,804,805,3,2,1, + 0,805,806,5,236,0,0,806,812,1,0,0,0,807,808,3,74,37,0,808,809,5, + 10,0,0,809,810,3,116,58,0,810,812,1,0,0,0,811,801,1,0,0,0,811,807, + 1,0,0,0,812,85,1,0,0,0,813,821,5,200,0,0,814,815,3,94,47,0,815,816, + 5,210,0,0,816,818,1,0,0,0,817,814,1,0,0,0,817,818,1,0,0,0,818,819, + 1,0,0,0,819,821,3,88,44,0,820,813,1,0,0,0,820,817,1,0,0,0,821,87, + 1,0,0,0,822,827,3,116,58,0,823,824,5,210,0,0,824,826,3,116,58,0, + 825,823,1,0,0,0,826,829,1,0,0,0,827,825,1,0,0,0,827,828,1,0,0,0, + 828,89,1,0,0,0,829,827,1,0,0,0,830,831,6,45,-1,0,831,838,3,94,47, + 0,832,838,3,92,46,0,833,834,5,220,0,0,834,835,3,2,1,0,835,836,5, + 236,0,0,836,838,1,0,0,0,837,830,1,0,0,0,837,832,1,0,0,0,837,833, + 1,0,0,0,838,847,1,0,0,0,839,843,10,1,0,0,840,844,3,114,57,0,841, + 842,5,10,0,0,842,844,3,116,58,0,843,840,1,0,0,0,843,841,1,0,0,0, + 844,846,1,0,0,0,845,839,1,0,0,0,846,849,1,0,0,0,847,845,1,0,0,0, + 847,848,1,0,0,0,848,91,1,0,0,0,849,847,1,0,0,0,850,851,3,116,58, + 0,851,853,5,220,0,0,852,854,3,96,48,0,853,852,1,0,0,0,853,854,1, + 0,0,0,854,855,1,0,0,0,855,856,5,236,0,0,856,93,1,0,0,0,857,858,3, + 100,50,0,858,859,5,210,0,0,859,861,1,0,0,0,860,857,1,0,0,0,860,861, + 1,0,0,0,861,862,1,0,0,0,862,863,3,116,58,0,863,95,1,0,0,0,864,869, + 3,98,49,0,865,866,5,206,0,0,866,868,3,98,49,0,867,865,1,0,0,0,868, + 871,1,0,0,0,869,867,1,0,0,0,869,870,1,0,0,0,870,97,1,0,0,0,871,869, + 1,0,0,0,872,876,3,88,44,0,873,876,3,92,46,0,874,876,3,106,53,0,875, + 872,1,0,0,0,875,873,1,0,0,0,875,874,1,0,0,0,876,99,1,0,0,0,877,878, + 3,116,58,0,878,101,1,0,0,0,879,888,5,195,0,0,880,881,5,210,0,0,881, + 888,7,11,0,0,882,883,5,197,0,0,883,885,5,210,0,0,884,886,7,11,0, + 0,885,884,1,0,0,0,885,886,1,0,0,0,886,888,1,0,0,0,887,879,1,0,0, + 0,887,880,1,0,0,0,887,882,1,0,0,0,888,103,1,0,0,0,889,891,7,12,0, + 0,890,889,1,0,0,0,890,891,1,0,0,0,891,898,1,0,0,0,892,899,3,102, + 51,0,893,899,5,196,0,0,894,899,5,197,0,0,895,899,5,198,0,0,896,899, + 5,82,0,0,897,899,5,113,0,0,898,892,1,0,0,0,898,893,1,0,0,0,898,894, + 1,0,0,0,898,895,1,0,0,0,898,896,1,0,0,0,898,897,1,0,0,0,899,105, + 1,0,0,0,900,904,3,104,52,0,901,904,5,199,0,0,902,904,5,116,0,0,903, + 900,1,0,0,0,903,901,1,0,0,0,903,902,1,0,0,0,904,107,1,0,0,0,905, + 906,7,13,0,0,906,109,1,0,0,0,907,908,7,14,0,0,908,111,1,0,0,0,909, + 910,7,15,0,0,910,113,1,0,0,0,911,914,5,194,0,0,912,914,3,112,56, + 0,913,911,1,0,0,0,913,912,1,0,0,0,914,115,1,0,0,0,915,919,5,194, + 0,0,916,919,3,108,54,0,917,919,3,110,55,0,918,915,1,0,0,0,918,916, + 1,0,0,0,918,917,1,0,0,0,919,117,1,0,0,0,920,921,5,199,0,0,921,922, + 5,212,0,0,922,923,3,104,52,0,923,119,1,0,0,0,115,122,132,140,143, + 147,150,154,157,160,163,166,170,174,177,180,183,187,190,199,205, + 226,243,260,266,272,283,285,296,299,305,313,319,321,325,330,333, + 336,340,344,347,349,352,356,360,363,365,367,372,383,389,396,401, + 405,409,414,421,429,432,435,454,468,484,496,508,516,520,527,533, + 542,546,577,594,606,616,619,623,626,638,655,659,665,672,684,688, + 691,700,714,741,750,752,754,762,767,775,785,788,798,811,817,820, + 827,837,843,847,853,860,869,875,885,887,890,898,903,913,918 ] class HogQLParser ( Parser ): @@ -435,8 +438,9 @@ class HogQLParser ( Parser ): "", "", "", "", "'->'", "'*'", "'`'", "'\\'", "':'", "','", "'||'", "'-'", "'$'", "'.'", "'=='", "'='", "'>='", "'>'", - "'#'", "'{'", "'['", "'<='", "'('", "'<'", "", - "'??'", "'%'", "'+'", "'?'", "'\"'", "'''", "'}'", + "'#'", "'~*'", "'=~*'", "'{'", "'['", "'('", "'<='", + "'<'", "", "'!~*'", "'!~'", "'??'", "'%'", + "'+'", "'?'", "'\"'", "'''", "'~'", "'=~'", "'}'", "']'", "')'", "';'", "'/'", "'_'" ] symbolicNames = [ "", "ADD", "AFTER", "ALIAS", "ALL", "ALTER", @@ -478,12 +482,13 @@ class HogQLParser ( Parser ): "DECIMAL_LITERAL", "HEXADECIMAL_LITERAL", "STRING_LITERAL", "PLACEHOLDER", "ARROW", "ASTERISK", "BACKQUOTE", "BACKSLASH", "COLON", "COMMA", "CONCAT", "DASH", "DOLLAR", "DOT", - "EQ_DOUBLE", "EQ_SINGLE", "GE", "GT", "HASH", "LBRACE", - "LBRACKET", "LE", "LPAREN", "LT", "NOT_EQ", "NULLISH", + "EQ_DOUBLE", "EQ_SINGLE", "GT_EQ", "GT", "HASH", "IREGEX_SINGLE", + "IREGEX_DOUBLE", "LBRACE", "LBRACKET", "LPAREN", "LT_EQ", + "LT", "NOT_EQ", "NOT_IREGEX", "NOT_REGEX", "NULLISH", "PERCENT", "PLUS", "QUERY", "QUOTE_DOUBLE", "QUOTE_SINGLE", - "RBRACE", "RBRACKET", "RPAREN", "SEMICOLON", "SLASH", - "UNDERSCORE", "MULTI_LINE_COMMENT", "SINGLE_LINE_COMMENT", - "WHITESPACE" ] + "REGEX_SINGLE", "REGEX_DOUBLE", "RBRACE", "RBRACKET", + "RPAREN", "SEMICOLON", "SLASH", "UNDERSCORE", "MULTI_LINE_COMMENT", + "SINGLE_LINE_COMMENT", "WHITESPACE" ] RULE_select = 0 RULE_selectUnionStmt = 1 @@ -778,30 +783,36 @@ class HogQLParser ( Parser ): DOT=210 EQ_DOUBLE=211 EQ_SINGLE=212 - GE=213 + GT_EQ=213 GT=214 HASH=215 - LBRACE=216 - LBRACKET=217 - LE=218 - LPAREN=219 - LT=220 - NOT_EQ=221 - NULLISH=222 - PERCENT=223 - PLUS=224 - QUERY=225 - QUOTE_DOUBLE=226 - QUOTE_SINGLE=227 - RBRACE=228 - RBRACKET=229 - RPAREN=230 - SEMICOLON=231 - SLASH=232 - UNDERSCORE=233 - MULTI_LINE_COMMENT=234 - SINGLE_LINE_COMMENT=235 - WHITESPACE=236 + IREGEX_SINGLE=216 + IREGEX_DOUBLE=217 + LBRACE=218 + LBRACKET=219 + LPAREN=220 + LT_EQ=221 + LT=222 + NOT_EQ=223 + NOT_IREGEX=224 + NOT_REGEX=225 + NULLISH=226 + PERCENT=227 + PLUS=228 + QUERY=229 + QUOTE_DOUBLE=230 + QUOTE_SINGLE=231 + REGEX_SINGLE=232 + REGEX_DOUBLE=233 + RBRACE=234 + RBRACKET=235 + RPAREN=236 + SEMICOLON=237 + SLASH=238 + UNDERSCORE=239 + MULTI_LINE_COMMENT=240 + SINGLE_LINE_COMMENT=241 + WHITESPACE=242 def __init__(self, input:TokenStream, output:TextIO = sys.stdout): super().__init__(input, output) @@ -989,7 +1000,7 @@ def selectStmtWithParens(self): self.state = 135 self.selectStmt() pass - elif token in [219]: + elif token in [220]: self.enterOuterAlt(localctx, 2) self.state = 136 self.match(HogQLParser.LPAREN) @@ -1245,7 +1256,7 @@ def selectStmt(self): self.state = 186 self.offsetOnlyClause() pass - elif token in [-1, 150, 176, 230]: + elif token in [-1, 150, 176, 236]: pass else: pass @@ -2003,7 +2014,7 @@ def limitAndOffsetClause(self): self.state = 265 self.columnExprList() pass - elif token in [-1, 150, 176, 230]: + elif token in [-1, 150, 176, 236]: pass else: pass @@ -3503,7 +3514,7 @@ def winFrameExtend(self): self.state = 454 self._errHandler.sync(self) token = self._input.LA(1) - if token in [33, 82, 113, 175, 195, 196, 197, 198, 208, 210, 224]: + if token in [33, 82, 113, 175, 195, 196, 197, 198, 208, 210, 228]: localctx = HogQLParser.FrameStartContext(self, localctx) self.enterOuterAlt(localctx, 1) self.state = 448 @@ -3933,7 +3944,7 @@ def columnTypeExpr(self): self.state = 516 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 4463068669) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 69122459133) != 0): self.state = 515 self.columnExprList() @@ -4348,18 +4359,30 @@ def EQ_SINGLE(self): return self.getToken(HogQLParser.EQ_SINGLE, 0) def NOT_EQ(self): return self.getToken(HogQLParser.NOT_EQ, 0) - def LE(self): - return self.getToken(HogQLParser.LE, 0) - def GE(self): - return self.getToken(HogQLParser.GE, 0) + def LT_EQ(self): + return self.getToken(HogQLParser.LT_EQ, 0) def LT(self): return self.getToken(HogQLParser.LT, 0) + def GT_EQ(self): + return self.getToken(HogQLParser.GT_EQ, 0) def GT(self): return self.getToken(HogQLParser.GT, 0) def LIKE(self): return self.getToken(HogQLParser.LIKE, 0) def ILIKE(self): return self.getToken(HogQLParser.ILIKE, 0) + def REGEX_SINGLE(self): + return self.getToken(HogQLParser.REGEX_SINGLE, 0) + def REGEX_DOUBLE(self): + return self.getToken(HogQLParser.REGEX_DOUBLE, 0) + def NOT_REGEX(self): + return self.getToken(HogQLParser.NOT_REGEX, 0) + def IREGEX_SINGLE(self): + return self.getToken(HogQLParser.IREGEX_SINGLE, 0) + def IREGEX_DOUBLE(self): + return self.getToken(HogQLParser.IREGEX_DOUBLE, 0) + def NOT_IREGEX(self): + return self.getToken(HogQLParser.NOT_IREGEX, 0) def COHORT(self): return self.getToken(HogQLParser.COHORT, 0) def NOT(self): @@ -5055,7 +5078,7 @@ def columnExpr(self, _p:int=0): self.state = 594 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 4463068669) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 69122459133) != 0): self.state = 593 self.columnExprList() @@ -5084,7 +5107,7 @@ def columnExpr(self, _p:int=0): self.state = 606 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 4463068669) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 69122459133) != 0): self.state = 605 self.columnExprList() @@ -5112,7 +5135,7 @@ def columnExpr(self, _p:int=0): self.state = 616 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 4463068669) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 69122459133) != 0): self.state = 615 self.columnExprList() @@ -5134,7 +5157,7 @@ def columnExpr(self, _p:int=0): self.state = 626 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 4463068669) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 69122459133) != 0): self.state = 625 self.columnArgList() @@ -5234,7 +5257,7 @@ def columnExpr(self, _p:int=0): self.state = 655 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 4463068669) != 0): + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 69122459133) != 0): self.state = 654 self.columnExprList() @@ -5253,7 +5276,7 @@ def columnExpr(self, _p:int=0): self._ctx.stop = self._input.LT(-1) - self.state = 748 + self.state = 754 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,90,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: @@ -5261,7 +5284,7 @@ def columnExpr(self, _p:int=0): if self._parseListeners is not None: self.triggerExitRuleEvent() _prevctx = localctx - self.state = 746 + self.state = 752 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,89,self._ctx) if la_ == 1: @@ -5279,11 +5302,11 @@ def columnExpr(self, _p:int=0): self.state = 662 localctx.operator = self.match(HogQLParser.ASTERISK) pass - elif token in [232]: + elif token in [238]: self.state = 663 localctx.operator = self.match(HogQLParser.SLASH) pass - elif token in [223]: + elif token in [227]: self.state = 664 localctx.operator = self.match(HogQLParser.PERCENT) pass @@ -5305,7 +5328,7 @@ def columnExpr(self, _p:int=0): self.state = 672 self._errHandler.sync(self) token = self._input.LA(1) - if token in [224]: + if token in [228]: self.state = 669 localctx.operator = self.match(HogQLParser.PLUS) pass @@ -5332,7 +5355,7 @@ def columnExpr(self, _p:int=0): if not self.precpred(self._ctx, 15): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 15)") - self.state = 694 + self.state = 700 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,85,self._ctx) if la_ == 1: @@ -5352,17 +5375,17 @@ def columnExpr(self, _p:int=0): elif la_ == 4: self.state = 679 - localctx.operator = self.match(HogQLParser.LE) + localctx.operator = self.match(HogQLParser.LT_EQ) pass elif la_ == 5: self.state = 680 - localctx.operator = self.match(HogQLParser.GE) + localctx.operator = self.match(HogQLParser.LT) pass elif la_ == 6: self.state = 681 - localctx.operator = self.match(HogQLParser.LT) + localctx.operator = self.match(HogQLParser.GT_EQ) pass elif la_ == 7: @@ -5409,180 +5432,210 @@ def columnExpr(self, _p:int=0): self.consume() pass + elif la_ == 10: + self.state = 694 + localctx.operator = self.match(HogQLParser.REGEX_SINGLE) + pass - self.state = 696 + elif la_ == 11: + self.state = 695 + localctx.operator = self.match(HogQLParser.REGEX_DOUBLE) + pass + + elif la_ == 12: + self.state = 696 + localctx.operator = self.match(HogQLParser.NOT_REGEX) + pass + + elif la_ == 13: + self.state = 697 + localctx.operator = self.match(HogQLParser.IREGEX_SINGLE) + pass + + elif la_ == 14: + self.state = 698 + localctx.operator = self.match(HogQLParser.IREGEX_DOUBLE) + pass + + elif la_ == 15: + self.state = 699 + localctx.operator = self.match(HogQLParser.NOT_IREGEX) + pass + + + self.state = 702 localctx.right = self.columnExpr(16) pass elif la_ == 4: localctx = HogQLParser.ColumnExprNullishContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 697 + self.state = 703 if not self.precpred(self._ctx, 13): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 13)") - self.state = 698 + self.state = 704 self.match(HogQLParser.NULLISH) - self.state = 699 + self.state = 705 self.columnExpr(14) pass elif la_ == 5: localctx = HogQLParser.ColumnExprAndContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 700 + self.state = 706 if not self.precpred(self._ctx, 11): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 11)") - self.state = 701 + self.state = 707 self.match(HogQLParser.AND) - self.state = 702 + self.state = 708 self.columnExpr(12) pass elif la_ == 6: localctx = HogQLParser.ColumnExprOrContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 703 + self.state = 709 if not self.precpred(self._ctx, 10): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 10)") - self.state = 704 + self.state = 710 self.match(HogQLParser.OR) - self.state = 705 + self.state = 711 self.columnExpr(11) pass elif la_ == 7: localctx = HogQLParser.ColumnExprBetweenContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 706 + self.state = 712 if not self.precpred(self._ctx, 9): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 9)") - self.state = 708 + self.state = 714 self._errHandler.sync(self) _la = self._input.LA(1) if _la==115: - self.state = 707 + self.state = 713 self.match(HogQLParser.NOT) - self.state = 710 + self.state = 716 self.match(HogQLParser.BETWEEN) - self.state = 711 + self.state = 717 self.columnExpr(0) - self.state = 712 + self.state = 718 self.match(HogQLParser.AND) - self.state = 713 + self.state = 719 self.columnExpr(10) pass elif la_ == 8: localctx = HogQLParser.ColumnExprTernaryOpContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 715 + self.state = 721 if not self.precpred(self._ctx, 8): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 8)") - self.state = 716 + self.state = 722 self.match(HogQLParser.QUERY) - self.state = 717 + self.state = 723 self.columnExpr(0) - self.state = 718 + self.state = 724 self.match(HogQLParser.COLON) - self.state = 719 + self.state = 725 self.columnExpr(8) pass elif la_ == 9: localctx = HogQLParser.ColumnExprArrayAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 721 + self.state = 727 if not self.precpred(self._ctx, 21): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 21)") - self.state = 722 + self.state = 728 self.match(HogQLParser.LBRACKET) - self.state = 723 + self.state = 729 self.columnExpr(0) - self.state = 724 + self.state = 730 self.match(HogQLParser.RBRACKET) pass elif la_ == 10: localctx = HogQLParser.ColumnExprTupleAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 726 + self.state = 732 if not self.precpred(self._ctx, 20): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 20)") - self.state = 727 + self.state = 733 self.match(HogQLParser.DOT) - self.state = 728 + self.state = 734 self.match(HogQLParser.DECIMAL_LITERAL) pass elif la_ == 11: localctx = HogQLParser.ColumnExprPropertyAccessContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 729 + self.state = 735 if not self.precpred(self._ctx, 19): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 19)") - self.state = 730 + self.state = 736 self.match(HogQLParser.DOT) - self.state = 731 + self.state = 737 self.identifier() pass elif la_ == 12: localctx = HogQLParser.ColumnExprIsNullContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 732 + self.state = 738 if not self.precpred(self._ctx, 14): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 14)") - self.state = 733 + self.state = 739 self.match(HogQLParser.IS) - self.state = 735 + self.state = 741 self._errHandler.sync(self) _la = self._input.LA(1) if _la==115: - self.state = 734 + self.state = 740 self.match(HogQLParser.NOT) - self.state = 737 + self.state = 743 self.match(HogQLParser.NULL_SQL) pass elif la_ == 13: localctx = HogQLParser.ColumnExprAliasContext(self, HogQLParser.ColumnExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_columnExpr) - self.state = 738 + self.state = 744 if not self.precpred(self._ctx, 7): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 7)") - self.state = 744 + self.state = 750 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,88,self._ctx) if la_ == 1: - self.state = 739 + self.state = 745 self.alias() pass elif la_ == 2: - self.state = 740 + self.state = 746 self.match(HogQLParser.AS) - self.state = 741 + self.state = 747 self.identifier() pass elif la_ == 3: - self.state = 742 + self.state = 748 self.match(HogQLParser.AS) - self.state = 743 + self.state = 749 self.match(HogQLParser.STRING_LITERAL) pass @@ -5590,7 +5643,7 @@ def columnExpr(self, _p:int=0): pass - self.state = 750 + self.state = 756 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,90,self._ctx) @@ -5642,17 +5695,17 @@ def columnArgList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 751 + self.state = 757 self.columnArgExpr() - self.state = 756 + self.state = 762 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 752 + self.state = 758 self.match(HogQLParser.COMMA) - self.state = 753 + self.state = 759 self.columnArgExpr() - self.state = 758 + self.state = 764 self._errHandler.sync(self) _la = self._input.LA(1) @@ -5697,18 +5750,18 @@ def columnArgExpr(self): localctx = HogQLParser.ColumnArgExprContext(self, self._ctx, self.state) self.enterRule(localctx, 78, self.RULE_columnArgExpr) try: - self.state = 761 + self.state = 767 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,92,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 759 + self.state = 765 self.columnLambdaExpr() pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 760 + self.state = 766 self.columnExpr(0) pass @@ -5774,41 +5827,41 @@ def columnLambdaExpr(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 782 + self.state = 788 self._errHandler.sync(self) token = self._input.LA(1) - if token in [219]: - self.state = 763 + if token in [220]: + self.state = 769 self.match(HogQLParser.LPAREN) - self.state = 764 + self.state = 770 self.identifier() - self.state = 769 + self.state = 775 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 765 + self.state = 771 self.match(HogQLParser.COMMA) - self.state = 766 + self.state = 772 self.identifier() - self.state = 771 + self.state = 777 self._errHandler.sync(self) _la = self._input.LA(1) - self.state = 772 + self.state = 778 self.match(HogQLParser.RPAREN) pass elif token in [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 194]: - self.state = 774 + self.state = 780 self.identifier() - self.state = 779 + self.state = 785 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 775 + self.state = 781 self.match(HogQLParser.COMMA) - self.state = 776 + self.state = 782 self.identifier() - self.state = 781 + self.state = 787 self._errHandler.sync(self) _la = self._input.LA(1) @@ -5816,9 +5869,9 @@ def columnLambdaExpr(self): else: raise NoViableAltException(self) - self.state = 784 + self.state = 790 self.match(HogQLParser.ARROW) - self.state = 785 + self.state = 791 self.columnExpr(0) except RecognitionException as re: localctx.exception = re @@ -5868,17 +5921,17 @@ def withExprList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 787 + self.state = 793 self.withExpr() - self.state = 792 + self.state = 798 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 788 + self.state = 794 self.match(HogQLParser.COMMA) - self.state = 789 + self.state = 795 self.withExpr() - self.state = 794 + self.state = 800 self._errHandler.sync(self) _la = self._input.LA(1) @@ -5962,32 +6015,32 @@ def withExpr(self): localctx = HogQLParser.WithExprContext(self, self._ctx, self.state) self.enterRule(localctx, 84, self.RULE_withExpr) try: - self.state = 805 + self.state = 811 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,97,self._ctx) if la_ == 1: localctx = HogQLParser.WithExprSubqueryContext(self, localctx) self.enterOuterAlt(localctx, 1) - self.state = 795 + self.state = 801 self.identifier() - self.state = 796 + self.state = 802 self.match(HogQLParser.AS) - self.state = 797 + self.state = 803 self.match(HogQLParser.LPAREN) - self.state = 798 + self.state = 804 self.selectUnionStmt() - self.state = 799 + self.state = 805 self.match(HogQLParser.RPAREN) pass elif la_ == 2: localctx = HogQLParser.WithExprColumnContext(self, localctx) self.enterOuterAlt(localctx, 2) - self.state = 801 + self.state = 807 self.columnExpr(0) - self.state = 802 + self.state = 808 self.match(HogQLParser.AS) - self.state = 803 + self.state = 809 self.identifier() pass @@ -6039,27 +6092,27 @@ def columnIdentifier(self): localctx = HogQLParser.ColumnIdentifierContext(self, self._ctx, self.state) self.enterRule(localctx, 86, self.RULE_columnIdentifier) try: - self.state = 814 + self.state = 820 self._errHandler.sync(self) token = self._input.LA(1) if token in [200]: self.enterOuterAlt(localctx, 1) - self.state = 807 + self.state = 813 self.match(HogQLParser.PLACEHOLDER) pass elif token in [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 194]: self.enterOuterAlt(localctx, 2) - self.state = 811 + self.state = 817 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,98,self._ctx) if la_ == 1: - self.state = 808 + self.state = 814 self.tableIdentifier() - self.state = 809 + self.state = 815 self.match(HogQLParser.DOT) - self.state = 813 + self.state = 819 self.nestedIdentifier() pass else: @@ -6112,18 +6165,18 @@ def nestedIdentifier(self): self.enterRule(localctx, 88, self.RULE_nestedIdentifier) try: self.enterOuterAlt(localctx, 1) - self.state = 816 + self.state = 822 self.identifier() - self.state = 821 + self.state = 827 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,100,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: if _alt==1: - self.state = 817 + self.state = 823 self.match(HogQLParser.DOT) - self.state = 818 + self.state = 824 self.identifier() - self.state = 823 + self.state = 829 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,100,self._ctx) @@ -6242,7 +6295,7 @@ def tableExpr(self, _p:int=0): self.enterRecursionRule(localctx, 90, self.RULE_tableExpr, _p) try: self.enterOuterAlt(localctx, 1) - self.state = 831 + self.state = 837 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,101,self._ctx) if la_ == 1: @@ -6250,7 +6303,7 @@ def tableExpr(self, _p:int=0): self._ctx = localctx _prevctx = localctx - self.state = 825 + self.state = 831 self.tableIdentifier() pass @@ -6258,7 +6311,7 @@ def tableExpr(self, _p:int=0): localctx = HogQLParser.TableExprFunctionContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 826 + self.state = 832 self.tableFunctionExpr() pass @@ -6266,17 +6319,17 @@ def tableExpr(self, _p:int=0): localctx = HogQLParser.TableExprSubqueryContext(self, localctx) self._ctx = localctx _prevctx = localctx - self.state = 827 + self.state = 833 self.match(HogQLParser.LPAREN) - self.state = 828 + self.state = 834 self.selectUnionStmt() - self.state = 829 + self.state = 835 self.match(HogQLParser.RPAREN) pass self._ctx.stop = self._input.LT(-1) - self.state = 841 + self.state = 847 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,103,self._ctx) while _alt!=2 and _alt!=ATN.INVALID_ALT_NUMBER: @@ -6286,27 +6339,27 @@ def tableExpr(self, _p:int=0): _prevctx = localctx localctx = HogQLParser.TableExprAliasContext(self, HogQLParser.TableExprContext(self, _parentctx, _parentState)) self.pushNewRecursionContext(localctx, _startState, self.RULE_tableExpr) - self.state = 833 + self.state = 839 if not self.precpred(self._ctx, 1): from antlr4.error.Errors import FailedPredicateException raise FailedPredicateException(self, "self.precpred(self._ctx, 1)") - self.state = 837 + self.state = 843 self._errHandler.sync(self) token = self._input.LA(1) if token in [36, 62, 77, 91, 194]: - self.state = 834 + self.state = 840 self.alias() pass elif token in [10]: - self.state = 835 + self.state = 841 self.match(HogQLParser.AS) - self.state = 836 + self.state = 842 self.identifier() pass else: raise NoViableAltException(self) - self.state = 843 + self.state = 849 self._errHandler.sync(self) _alt = self._interp.adaptivePredict(self._input,103,self._ctx) @@ -6359,19 +6412,19 @@ def tableFunctionExpr(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 844 + self.state = 850 self.identifier() - self.state = 845 + self.state = 851 self.match(HogQLParser.LPAREN) - self.state = 847 + self.state = 853 self._errHandler.sync(self) _la = self._input.LA(1) - if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 4295295229) != 0): - self.state = 846 + if (((_la) & ~0x3f) == 0 and ((1 << _la) & -33554436) != 0) or ((((_la - 64)) & ~0x3f) == 0 and ((1 << (_la - 64)) & -1) != 0) or ((((_la - 128)) & ~0x3f) == 0 and ((1 << (_la - 128)) & -9) != 0) or ((((_la - 192)) & ~0x3f) == 0 and ((1 << (_la - 192)) & 68719804669) != 0): + self.state = 852 self.tableArgList() - self.state = 849 + self.state = 855 self.match(HogQLParser.RPAREN) except RecognitionException as re: localctx.exception = re @@ -6418,17 +6471,17 @@ def tableIdentifier(self): self.enterRule(localctx, 94, self.RULE_tableIdentifier) try: self.enterOuterAlt(localctx, 1) - self.state = 854 + self.state = 860 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,105,self._ctx) if la_ == 1: - self.state = 851 + self.state = 857 self.databaseIdentifier() - self.state = 852 + self.state = 858 self.match(HogQLParser.DOT) - self.state = 856 + self.state = 862 self.identifier() except RecognitionException as re: localctx.exception = re @@ -6478,17 +6531,17 @@ def tableArgList(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 858 + self.state = 864 self.tableArgExpr() - self.state = 863 + self.state = 869 self._errHandler.sync(self) _la = self._input.LA(1) while _la==206: - self.state = 859 + self.state = 865 self.match(HogQLParser.COMMA) - self.state = 860 + self.state = 866 self.tableArgExpr() - self.state = 865 + self.state = 871 self._errHandler.sync(self) _la = self._input.LA(1) @@ -6537,24 +6590,24 @@ def tableArgExpr(self): localctx = HogQLParser.TableArgExprContext(self, self._ctx, self.state) self.enterRule(localctx, 98, self.RULE_tableArgExpr) try: - self.state = 869 + self.state = 875 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,107,self._ctx) if la_ == 1: self.enterOuterAlt(localctx, 1) - self.state = 866 + self.state = 872 self.nestedIdentifier() pass elif la_ == 2: self.enterOuterAlt(localctx, 2) - self.state = 867 + self.state = 873 self.tableFunctionExpr() pass elif la_ == 3: self.enterOuterAlt(localctx, 3) - self.state = 868 + self.state = 874 self.literal() pass @@ -6597,7 +6650,7 @@ def databaseIdentifier(self): self.enterRule(localctx, 100, self.RULE_databaseIdentifier) try: self.enterOuterAlt(localctx, 1) - self.state = 871 + self.state = 877 self.identifier() except RecognitionException as re: localctx.exception = re @@ -6648,19 +6701,19 @@ def floatingLiteral(self): self.enterRule(localctx, 102, self.RULE_floatingLiteral) self._la = 0 # Token type try: - self.state = 881 + self.state = 887 self._errHandler.sync(self) token = self._input.LA(1) if token in [195]: self.enterOuterAlt(localctx, 1) - self.state = 873 + self.state = 879 self.match(HogQLParser.FLOATING_LITERAL) pass elif token in [210]: self.enterOuterAlt(localctx, 2) - self.state = 874 + self.state = 880 self.match(HogQLParser.DOT) - self.state = 875 + self.state = 881 _la = self._input.LA(1) if not(_la==196 or _la==197): self._errHandler.recoverInline(self) @@ -6670,15 +6723,15 @@ def floatingLiteral(self): pass elif token in [197]: self.enterOuterAlt(localctx, 3) - self.state = 876 + self.state = 882 self.match(HogQLParser.DECIMAL_LITERAL) - self.state = 877 + self.state = 883 self.match(HogQLParser.DOT) - self.state = 879 + self.state = 885 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,108,self._ctx) if la_ == 1: - self.state = 878 + self.state = 884 _la = self._input.LA(1) if not(_la==196 or _la==197): self._errHandler.recoverInline(self) @@ -6751,49 +6804,49 @@ def numberLiteral(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 884 + self.state = 890 self._errHandler.sync(self) _la = self._input.LA(1) - if _la==208 or _la==224: - self.state = 883 + if _la==208 or _la==228: + self.state = 889 _la = self._input.LA(1) - if not(_la==208 or _la==224): + if not(_la==208 or _la==228): self._errHandler.recoverInline(self) else: self._errHandler.reportMatch(self) self.consume() - self.state = 892 + self.state = 898 self._errHandler.sync(self) la_ = self._interp.adaptivePredict(self._input,111,self._ctx) if la_ == 1: - self.state = 886 + self.state = 892 self.floatingLiteral() pass elif la_ == 2: - self.state = 887 + self.state = 893 self.match(HogQLParser.OCTAL_LITERAL) pass elif la_ == 3: - self.state = 888 + self.state = 894 self.match(HogQLParser.DECIMAL_LITERAL) pass elif la_ == 4: - self.state = 889 + self.state = 895 self.match(HogQLParser.HEXADECIMAL_LITERAL) pass elif la_ == 5: - self.state = 890 + self.state = 896 self.match(HogQLParser.INF) pass elif la_ == 6: - self.state = 891 + self.state = 897 self.match(HogQLParser.NAN_SQL) pass @@ -6841,22 +6894,22 @@ def literal(self): localctx = HogQLParser.LiteralContext(self, self._ctx, self.state) self.enterRule(localctx, 106, self.RULE_literal) try: - self.state = 897 + self.state = 903 self._errHandler.sync(self) token = self._input.LA(1) - if token in [82, 113, 195, 196, 197, 198, 208, 210, 224]: + if token in [82, 113, 195, 196, 197, 198, 208, 210, 228]: self.enterOuterAlt(localctx, 1) - self.state = 894 + self.state = 900 self.numberLiteral() pass elif token in [199]: self.enterOuterAlt(localctx, 2) - self.state = 895 + self.state = 901 self.match(HogQLParser.STRING_LITERAL) pass elif token in [116]: self.enterOuterAlt(localctx, 3) - self.state = 896 + self.state = 902 self.match(HogQLParser.NULL_SQL) pass else: @@ -6921,7 +6974,7 @@ def interval(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 899 + self.state = 905 _la = self._input.LA(1) if not(_la==37 or ((((_la - 76)) & ~0x3f) == 0 and ((1 << (_la - 76)) & 72057615512764417) != 0) or ((((_la - 145)) & ~0x3f) == 0 and ((1 << (_la - 145)) & 36283883716609) != 0)): self._errHandler.recoverInline(self) @@ -7497,7 +7550,7 @@ def keyword(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 901 + self.state = 907 _la = self._input.LA(1) if not(((((_la - 2)) & ~0x3f) == 0 and ((1 << (_la - 2)) & -34368126977) != 0) or ((((_la - 66)) & ~0x3f) == 0 and ((1 << (_la - 66)) & -1288627627820033) != 0) or ((((_la - 130)) & ~0x3f) == 0 and ((1 << (_la - 130)) & 8034421735228932089) != 0)): self._errHandler.recoverInline(self) @@ -7551,7 +7604,7 @@ def keywordForAlias(self): self._la = 0 # Token type try: self.enterOuterAlt(localctx, 1) - self.state = 903 + self.state = 909 _la = self._input.LA(1) if not(((((_la - 36)) & ~0x3f) == 0 and ((1 << (_la - 36)) & 36030996109328385) != 0)): self._errHandler.recoverInline(self) @@ -7598,17 +7651,17 @@ def alias(self): localctx = HogQLParser.AliasContext(self, self._ctx, self.state) self.enterRule(localctx, 114, self.RULE_alias) try: - self.state = 907 + self.state = 913 self._errHandler.sync(self) token = self._input.LA(1) if token in [194]: self.enterOuterAlt(localctx, 1) - self.state = 905 + self.state = 911 self.match(HogQLParser.IDENTIFIER) pass elif token in [36, 62, 77, 91]: self.enterOuterAlt(localctx, 2) - self.state = 906 + self.state = 912 self.keywordForAlias() pass else: @@ -7658,22 +7711,22 @@ def identifier(self): localctx = HogQLParser.IdentifierContext(self, self._ctx, self.state) self.enterRule(localctx, 116, self.RULE_identifier) try: - self.state = 912 + self.state = 918 self._errHandler.sync(self) token = self._input.LA(1) if token in [194]: self.enterOuterAlt(localctx, 1) - self.state = 909 + self.state = 915 self.match(HogQLParser.IDENTIFIER) pass elif token in [37, 76, 108, 110, 132, 145, 185, 190]: self.enterOuterAlt(localctx, 2) - self.state = 910 + self.state = 916 self.interval() pass elif token in [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 79, 80, 81, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 109, 111, 112, 114, 115, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 186, 187, 188, 189, 191, 192]: self.enterOuterAlt(localctx, 3) - self.state = 911 + self.state = 917 self.keyword() pass else: @@ -7723,11 +7776,11 @@ def enumValue(self): self.enterRule(localctx, 118, self.RULE_enumValue) try: self.enterOuterAlt(localctx, 1) - self.state = 914 + self.state = 920 self.match(HogQLParser.STRING_LITERAL) - self.state = 915 + self.state = 921 self.match(HogQLParser.EQ_SINGLE) - self.state = 916 + self.state = 922 self.numberLiteral() except RecognitionException as re: localctx.exception = re diff --git a/posthog/hogql/grammar/HogQLParser.tokens b/posthog/hogql/grammar/HogQLParser.tokens index fb20b3b553f14..10fd925b09195 100644 --- a/posthog/hogql/grammar/HogQLParser.tokens +++ b/posthog/hogql/grammar/HogQLParser.tokens @@ -210,30 +210,36 @@ DOLLAR=209 DOT=210 EQ_DOUBLE=211 EQ_SINGLE=212 -GE=213 +GT_EQ=213 GT=214 HASH=215 -LBRACE=216 -LBRACKET=217 -LE=218 -LPAREN=219 -LT=220 -NOT_EQ=221 -NULLISH=222 -PERCENT=223 -PLUS=224 -QUERY=225 -QUOTE_DOUBLE=226 -QUOTE_SINGLE=227 -RBRACE=228 -RBRACKET=229 -RPAREN=230 -SEMICOLON=231 -SLASH=232 -UNDERSCORE=233 -MULTI_LINE_COMMENT=234 -SINGLE_LINE_COMMENT=235 -WHITESPACE=236 +IREGEX_SINGLE=216 +IREGEX_DOUBLE=217 +LBRACE=218 +LBRACKET=219 +LPAREN=220 +LT_EQ=221 +LT=222 +NOT_EQ=223 +NOT_IREGEX=224 +NOT_REGEX=225 +NULLISH=226 +PERCENT=227 +PLUS=228 +QUERY=229 +QUOTE_DOUBLE=230 +QUOTE_SINGLE=231 +REGEX_SINGLE=232 +REGEX_DOUBLE=233 +RBRACE=234 +RBRACKET=235 +RPAREN=236 +SEMICOLON=237 +SLASH=238 +UNDERSCORE=239 +MULTI_LINE_COMMENT=240 +SINGLE_LINE_COMMENT=241 +WHITESPACE=242 'false'=191 'true'=192 '->'=201 @@ -251,20 +257,26 @@ WHITESPACE=236 '>='=213 '>'=214 '#'=215 -'{'=216 -'['=217 -'<='=218 -'('=219 -'<'=220 -'??'=222 -'%'=223 -'+'=224 -'?'=225 -'"'=226 -'\''=227 -'}'=228 -']'=229 -')'=230 -';'=231 -'/'=232 -'_'=233 +'~*'=216 +'=~*'=217 +'{'=218 +'['=219 +'('=220 +'<='=221 +'<'=222 +'!~*'=224 +'!~'=225 +'??'=226 +'%'=227 +'+'=228 +'?'=229 +'"'=230 +'\''=231 +'~'=232 +'=~'=233 +'}'=234 +']'=235 +')'=236 +';'=237 +'/'=238 +'_'=239